commit c77e506db59553922910742f6a290cdd82362afe Author: Trey t Date: Mon Apr 6 11:28:40 2026 -0500 Initial project setup - Phases 1-3 complete diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..eb5623c --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,29 @@ +{ + "permissions": { + "allow": [ + "WebFetch(domain:docs.proxyman.com)", + "WebSearch", + "WebFetch(domain:freshbits.fi)", + "WebFetch(domain:forums.swift.org)", + "WebFetch(domain:github.com)", + "Bash(xcode-select -p)", + "Bash(xcodegen generate:*)", + "Bash(rm -rf ~/Library/Developer/Xcode/DerivedData/ProxyApp-*/)", + "Bash(rm -rf ~/Library/Developer/Xcode/DerivedData/ProxyApp-*)", + "Read(//Users/treyt/Library/Developer/Xcode/DerivedData/**)", + "Bash(pkill -f \"com.apple.dt.SKAgent\")", + "Bash(rm -rf ~/Library/Developer/Xcode/DerivedData/ProxyApp-*/SourcePackages)", + "Bash(rm -rf ~/Library/Caches/org.swift.swiftpm/repositories/GRDB*)", + "Bash(pkill -9 -f xcodebuild)", + "Bash(rm -rf ~/Library/Caches/org.swift.swiftpm)", + "Bash(pkill -9 -f swift-build)", + "Bash(pkill -9 -f \"com.apple.dt\")", + "Bash(ls ~/Library/Developer/Xcode/DerivedData/ProxyApp-*/SourcePackages/checkouts/)", + "Bash(cat ~/Library/Developer/Xcode/DerivedData/ProxyApp-*/SourcePackages/checkouts/swift-crypto/Package.swift)", + "Bash(cat ~/Library/Developer/Xcode/DerivedData/ProxyApp-*/SourcePackages/checkouts/swift-certificates/Package.swift)", + "Bash(git init:*)", + "Bash(git add:*)", + "Bash(git commit:*)" + ] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..845eb7a --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +*.xcuserdata +DerivedData/ +.build/ +screens/ diff --git a/App/AppState.swift b/App/AppState.swift new file mode 100644 index 0000000..cb27493 --- /dev/null +++ b/App/AppState.swift @@ -0,0 +1,103 @@ +import SwiftUI +import NetworkExtension +import ProxyCore + +@Observable +@MainActor +final class AppState { + var vpnStatus: NEVPNStatus = .disconnected + var isCertificateInstalled: Bool = false + var isCertificateTrusted: Bool = false + + private var vpnManager: NETunnelProviderManager? + private var statusObservation: NSObjectProtocol? + + init() { + Task { + await loadVPNManager() + } + } + + func loadVPNManager() async { + do { + let managers = try await NETunnelProviderManager.loadAllFromPreferences() + if let existing = managers.first { + vpnManager = existing + } else { + let manager = NETunnelProviderManager() + let proto = NETunnelProviderProtocol() + proto.providerBundleIdentifier = ProxyConstants.extensionBundleIdentifier + proto.serverAddress = ProxyConstants.proxyHost + manager.protocolConfiguration = proto + manager.localizedDescription = "Proxy" + manager.isEnabled = true + try await manager.saveToPreferences() + try await manager.loadFromPreferences() + vpnManager = manager + } + observeVPNStatus() + vpnStatus = vpnManager?.connection.status ?? .disconnected + } catch { + print("[AppState] Failed to load VPN manager: \(error)") + } + } + + func toggleVPN() async { + guard let manager = vpnManager else { + await loadVPNManager() + return + } + + switch manager.connection.status { + case .connected, .connecting: + manager.connection.stopVPNTunnel() + case .disconnected, .invalid: + do { + // Ensure saved and fresh before starting + manager.isEnabled = true + try await manager.saveToPreferences() + try await manager.loadFromPreferences() + try manager.connection.startVPNTunnel() + } catch { + print("[AppState] Failed to start VPN: \(error)") + } + default: + break + } + } + + var isVPNConnected: Bool { + vpnStatus == .connected + } + + var vpnStatusText: String { + switch vpnStatus { + case .connected: "Connected" + case .connecting: "Connecting..." + case .disconnecting: "Disconnecting..." + case .disconnected: "Disconnected" + case .invalid: "Not Configured" + case .reasserting: "Reconnecting..." + @unknown default: "Unknown" + } + } + + private func observeVPNStatus() { + guard let manager = vpnManager else { return } + + // Remove existing observer + if let existing = statusObservation { + NotificationCenter.default.removeObserver(existing) + } + + statusObservation = NotificationCenter.default.addObserver( + forName: .NEVPNStatusDidChange, + object: manager.connection, + queue: .main + ) { [weak self] _ in + Task { @MainActor in + self?.vpnStatus = manager.connection.status + } + } + } +} diff --git a/App/ContentView.swift b/App/ContentView.swift new file mode 100644 index 0000000..e689cf8 --- /dev/null +++ b/App/ContentView.swift @@ -0,0 +1,47 @@ +import SwiftUI + +struct ContentView: View { + @Environment(AppState.self) private var appState + + enum Tab: Hashable { + case home, pin, compose, more + } + + @State private var selectedTab: Tab = .home + + var body: some View { + TabView(selection: $selectedTab) { + NavigationStack { + HomeView() + } + .tabItem { + Label("Home", systemImage: "house.fill") + } + .tag(Tab.home) + + NavigationStack { + PinView() + } + .tabItem { + Label("Pin", systemImage: "pin.fill") + } + .tag(Tab.pin) + + NavigationStack { + ComposeListView() + } + .tabItem { + Label("Compose", systemImage: "square.and.pencil") + } + .tag(Tab.compose) + + NavigationStack { + MoreView() + } + .tabItem { + Label("More", systemImage: "ellipsis.circle.fill") + } + .tag(Tab.more) + } + } +} diff --git a/App/Entitlements/ProxyApp.entitlements b/App/Entitlements/ProxyApp.entitlements new file mode 100644 index 0000000..e8c1ba7 --- /dev/null +++ b/App/Entitlements/ProxyApp.entitlements @@ -0,0 +1,14 @@ + + + + + com.apple.security.application-groups + + group.com.treyt.proxyapp + + com.apple.developer.networking.networkextension + + packet-tunnel-provider + + + diff --git a/App/Info.plist b/App/Info.plist new file mode 100644 index 0000000..82c3b76 --- /dev/null +++ b/App/Info.plist @@ -0,0 +1,35 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Proxy + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + + UILaunchScreen + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + + + diff --git a/App/ProxyApp.swift b/App/ProxyApp.swift new file mode 100644 index 0000000..0147661 --- /dev/null +++ b/App/ProxyApp.swift @@ -0,0 +1,13 @@ +import SwiftUI + +@main +struct ProxyApp: App { + @State private var appState = AppState() + + var body: some Scene { + WindowGroup { + ContentView() + .environment(appState) + } + } +} diff --git a/PacketTunnel/Entitlements/PacketTunnel.entitlements b/PacketTunnel/Entitlements/PacketTunnel.entitlements new file mode 100644 index 0000000..e8c1ba7 --- /dev/null +++ b/PacketTunnel/Entitlements/PacketTunnel.entitlements @@ -0,0 +1,14 @@ + + + + + com.apple.security.application-groups + + group.com.treyt.proxyapp + + com.apple.developer.networking.networkextension + + packet-tunnel-provider + + + diff --git a/PacketTunnel/Info.plist b/PacketTunnel/Info.plist new file mode 100644 index 0000000..fe2cbaf --- /dev/null +++ b/PacketTunnel/Info.plist @@ -0,0 +1,29 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + XPC! + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + NSExtension + + NSExtensionPointIdentifier + com.apple.networkextension.packet-tunnel + NSExtensionPrincipalClass + $(PRODUCT_MODULE_NAME).PacketTunnelProvider + + + diff --git a/PacketTunnel/PacketTunnelProvider.swift b/PacketTunnel/PacketTunnelProvider.swift new file mode 100644 index 0000000..5a21c2a --- /dev/null +++ b/PacketTunnel/PacketTunnelProvider.swift @@ -0,0 +1,50 @@ +import NetworkExtension +import ProxyCore + +class PacketTunnelProvider: NEPacketTunnelProvider, @unchecked Sendable { + private var proxyServer: ProxyServer? + + override func startTunnel(options: [String: NSObject]? = nil) async throws { + // Start the local proxy server + let server = ProxyServer() + try await server.start() + proxyServer = server + + // Configure tunnel to redirect HTTP/HTTPS to our local proxy + let settings = NEPacketTunnelNetworkSettings(tunnelRemoteAddress: "127.0.0.1") + + let proxySettings = NEProxySettings() + proxySettings.httpServer = NEProxyServer( + address: ProxyConstants.proxyHost, + port: ProxyConstants.proxyPort + ) + proxySettings.httpsServer = NEProxyServer( + address: ProxyConstants.proxyHost, + port: ProxyConstants.proxyPort + ) + proxySettings.httpEnabled = true + proxySettings.httpsEnabled = true + proxySettings.matchDomains = [""] // Match all domains + settings.proxySettings = proxySettings + + // DNS settings to ensure proper resolution + let dnsSettings = NEDNSSettings(servers: ["8.8.8.8", "8.8.4.4"]) + dnsSettings.matchDomains = [""] // Match all + settings.dnsSettings = dnsSettings + + try await setTunnelNetworkSettings(settings) + + IPCManager.shared.post(.extensionStarted) + } + + override func stopTunnel(with reason: NEProviderStopReason) async { + await proxyServer?.stop() + proxyServer = nil + IPCManager.shared.post(.extensionStopped) + } + + override func handleAppMessage(_ messageData: Data) async -> Data? { + // Handle IPC messages from the main app + return nil + } +} diff --git a/ProxyApp.xcodeproj/project.pbxproj b/ProxyApp.xcodeproj/project.pbxproj new file mode 100644 index 0000000..1fff41e --- /dev/null +++ b/ProxyApp.xcodeproj/project.pbxproj @@ -0,0 +1,1065 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXBuildFile section */ + 020C7E9BFD5FB376A5B5AB92 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1E030EAC76D5AD8FFC4CE41 /* Constants.swift */; }; + 044C2A568C13E889BC2AE30C /* ProxyCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FFBBFDC8A74655F6BABEC8F2 /* ProxyCore.framework */; }; + 0472CBEB3A89C801E4057FBA /* ToggleHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C79DF53F3FB49209C5D4C072 /* ToggleHeaderView.swift */; }; + 0510F681F9E47AF338D0DCFF /* TrafficRowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075A09C6B272A53485322E22 /* TrafficRowView.swift */; }; + 078E6456816B5FD9C8F8693C /* NIOCore in Frameworks */ = {isa = PBXBuildFile; productRef = BE056A6D2498A5D37D3D654F /* NIOCore */; }; + 0AD1CD2C01C1818765918E79 /* GRDB in Frameworks */ = {isa = PBXBuildFile; productRef = 4984B6EFE9C646250BBC622F /* GRDB */; }; + 1032DF442393FF744C5D6CB7 /* ComposeListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECBC2F9C7D32A3D7BA4AFDA9 /* ComposeListView.swift */; }; + 161B0B0900010F54252B2D3D /* FilterChipsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F02A950CF29A22F5EC9BD3B /* FilterChipsView.swift */; }; + 1773C53EAEA72B3B586F9881 /* NIOCore in Frameworks */ = {isa = PBXBuildFile; productRef = 2DE391CB5A75FCC4AC9A7B64 /* NIOCore */; }; + 1B346F9DF3D2319ED2CE49BD /* AppSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FC29FEF9E5C7AE175FE49A9 /* AppSettingsView.swift */; }; + 25DFC386BDBFC3B799E7ADCF /* DomainDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 519A53ABF80C96A2F7BE48C0 /* DomainDetailView.swift */; }; + 261724F00B739E099F864897 /* NIOSSL in Frameworks */ = {isa = PBXBuildFile; productRef = F7677A32280A2AB999BBC1DA /* NIOSSL */; }; + 268C1BC427C7CC81DCF6C7C8 /* KeyValueRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2D5D80F2ABE544DDA4D672F /* KeyValueRow.swift */; }; + 2D294CFFDB2FF485FDDF338E /* AdvancedSettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DE284C06437A69DA262860D /* AdvancedSettingsView.swift */; }; + 34E1EA5C2AA423CB092D99B7 /* IPCManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4506DB95E7CB1AD63D7BDBFD /* IPCManager.swift */; }; + 36BA84C1E610292F4DC98D1A /* SSLProxyingListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D18045C7039E4D081D2E0FB /* SSLProxyingListView.swift */; }; + 3E0939BAB9A087647A8943A2 /* HomeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB466F4510A96A63A4D28BB2 /* HomeView.swift */; }; + 41E9BEEBA72730B7D9B8DDA6 /* MITMHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7B122B086EE413B9FFA987D /* MITMHandler.swift */; }; + 4556109D775B65AC4D596E67 /* BreakpointRulesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2E3E2A57818A9523AE4909C /* BreakpointRulesView.swift */; }; + 47FCBF7C704629E6760E1B0C /* RequestDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 637C568F583A70F1B0F951AC /* RequestDetailView.swift */; }; + 4C1A9246FCBC2F86E0D33E10 /* ConnectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72C4B5CB3F4FD77839836ED4 /* ConnectHandler.swift */; }; + 56C49856550867A6DD6360A2 /* DNSSpoofRule.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8A7A619BD4FEF8FE1299DDD /* DNSSpoofRule.swift */; }; + 580734EA8A5E30B56AAD592C /* NIOHTTP1 in Frameworks */ = {isa = PBXBuildFile; productRef = 2C85D26D13198732391DB72A /* NIOHTTP1 */; }; + 59C38D09525034A6E4D4DDBE /* ComposeEditorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 173FF6F938E59C6FD5733FED /* ComposeEditorView.swift */; }; + 5B66F70CBCE439C4E1A5D108 /* ProxyServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F864AD4A39C9F503DE3F13 /* ProxyServer.swift */; }; + 5CBD25190C3F1AED2CCD821A /* CapturedTraffic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5235D9F2226096BF7BCCB45B /* CapturedTraffic.swift */; }; + 5CCD73D04194E548C72A9482 /* MapLocalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6B4BCD97141A64AFC5E679A /* MapLocalView.swift */; }; + 67A1B4E0EF5F307638959DD8 /* MoreView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27159F89C452CEF6FFE21FC9 /* MoreView.swift */; }; + 6F9A607918651BB36266193A /* WildcardMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = E026D97293D56740403666A3 /* WildcardMatcher.swift */; }; + 7034A0C2F5A8CDC56360D73A /* PacketTunnelProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 097285BB4EF5D3115F7F09BF /* PacketTunnelProvider.swift */; }; + 73197B515ABE80AB74BC232A /* MapLocalRule.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAEBD24F668D1AA572F4A669 /* MapLocalRule.swift */; }; + 79FE52B43CBAF0F42EAA5926 /* DomainGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2704184BD5C72B01D95A6BD8 /* DomainGroup.swift */; }; + 80B683DD5BDBF9C1F6A512E6 /* BlockListEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F228CD8526A2D7CD3F283A4 /* BlockListEntry.swift */; }; + 8258F5ED1BD2A12C52FED4EE /* ProxyApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F12E77EB9B01FFC29EE452 /* ProxyApp.swift */; }; + 8B71F895F74E16DA92D557DE /* GRDB in Frameworks */ = {isa = PBXBuildFile; productRef = 425205F9256BA5CD3D743B30 /* GRDB */; }; + 9368026FF53296BDD315D114 /* NIOExtras in Frameworks */ = {isa = PBXBuildFile; productRef = E3702F97C3DF37F2C4BEE30C /* NIOExtras */; }; + 9A5AD5BB0DA413AF852084EF /* X509 in Frameworks */ = {isa = PBXBuildFile; productRef = 302E511C58383FFA46C46C1A /* X509 */; }; + 9A91E027039087C8E07F224B /* CURLImportView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEE5A751E8F7842716D8D9C5 /* CURLImportView.swift */; }; + 9D2AF127D52466CC1DF030C7 /* RulesRepository.swift in Sources */ = {isa = PBXBuildFile; fileRef = 074C4C0E9529236CB373091C /* RulesRepository.swift */; }; + 9E7B90C28927E808B6EE8275 /* SSLProxyingEntry.swift in Sources */ = {isa = PBXBuildFile; fileRef = D69E8CA968380EEC4CEEAC58 /* SSLProxyingEntry.swift */; }; + A946C1681FB46D11AA6912B0 /* AppState.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC65A5C14A2D9474DC55BAD /* AppState.swift */; }; + AA23DE16F97A24279BBC6C1E /* BlockListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9C7DCE312827E925D474D1C /* BlockListView.swift */; }; + AA32CFF139FE1EE996452DB1 /* NIOHTTP1 in Frameworks */ = {isa = PBXBuildFile; productRef = 8A99B87B3538F636F618F358 /* NIOHTTP1 */; }; + AB7825AE02AFC8C30B87CB6D /* CertificateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66E52853A3CF25765660F938 /* CertificateManager.swift */; }; + AB808FC6FBA5DB69260AD642 /* PacketTunnel.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = FE274B16256054C197609357 /* PacketTunnel.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; + AD0314CCE960088687E23B9C /* DNSSpoofingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28FE75F0F15AA8A6A47422D5 /* DNSSpoofingView.swift */; }; + AE4AEED1C775E143C8E364AB /* StatusBadge.swift in Sources */ = {isa = PBXBuildFile; fileRef = F23D9B9787A45AF89ED0ACD1 /* StatusBadge.swift */; }; + B1ED1B3C0D80C2D0DCD48EBF /* MethodBadge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52F71C43C1B985E45828AF13 /* MethodBadge.swift */; }; + B703C5C4402C3821B94FED7F /* ComposeRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 777EEE35DFFD4F3411B3FCE3 /* ComposeRequest.swift */; }; + B7E0A7EDA5ECD495D8AE1B1F /* TrafficRepository.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86F3E254F52DA9F9345B69FF /* TrafficRepository.swift */; }; + BB1A565DEF2504F7B1031366 /* NoCachingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6897481A0E0AFC428D7B0760 /* NoCachingView.swift */; }; + BBFB2C1995747DBD3B1A322B /* DatabaseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E977B7F6D1876286BD79D75 /* DatabaseManager.swift */; }; + BEFC3E0A75A2012829208A94 /* ProxyCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FFBBFDC8A74655F6BABEC8F2 /* ProxyCore.framework */; }; + BF30AC37B886A0CBC171CC0C /* NIOPosix in Frameworks */ = {isa = PBXBuildFile; productRef = 7ACEE8638C00CA74E27095D3 /* NIOPosix */; }; + C07BCF735C7ED4DDC54CED7A /* GlueHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0874F5DFE7C72F953E6FC41 /* GlueHandler.swift */; }; + C659BA93C402A36E3E108706 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15B1AA944B076F281D2926BA /* ContentView.swift */; }; + D5F263D81C5381B39E3D92D9 /* GRDB in Frameworks */ = {isa = PBXBuildFile; productRef = B23BF84F58802C2FD4181AD2 /* GRDB */; }; + D7D0DED251BC60F65CA595BC /* EmptyStateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AF0747C1BE12B4259866382 /* EmptyStateView.swift */; }; + DEC2257E2B9263AA09F9EF2C /* NIOSSL in Frameworks */ = {isa = PBXBuildFile; productRef = 2C7F42CDC12F03C0FDD6539A /* NIOSSL */; }; + E7497BB12483B0928783579F /* CertificateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C130891674901F95EFF6C10 /* CertificateView.swift */; }; + E7AA10E880398BCC7E2642EC /* CURLParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = B38485B7FCE595D168C1C846 /* CURLParser.swift */; }; + E9D761ACA5FF7955B5BDCBA4 /* NIOExtras in Frameworks */ = {isa = PBXBuildFile; productRef = 11DB0A1E449F691613E238DE /* NIOExtras */; }; + F32E1472628FC2FD12CC833C /* BreakpointRule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F4B5CB6D7868661D6846B1 /* BreakpointRule.swift */; }; + F38240D6A5DF02C96345910F /* ComposeRepository.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6BDB66B8FF54D24E75D9DA /* ComposeRepository.swift */; }; + F5EA05A3520645ABD5FD6266 /* NIOPosix in Frameworks */ = {isa = PBXBuildFile; productRef = 2B0A2F194C23CE100A7B16B6 /* NIOPosix */; }; + FD565FCB905CB38529F4AF19 /* HTTPCaptureHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1F1AF90F2B1B2004D34587E /* HTTPCaptureHandler.swift */; }; + FF47A342C5D326B1CDFBA554 /* PinView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C1921178726BCFB9689CD40 /* PinView.swift */; }; + FF490C33F07B362A6E3A04C9 /* Crypto in Frameworks */ = {isa = PBXBuildFile; productRef = ED925608F42DF4F167F4AD6A /* Crypto */; }; + FF970F984CE302E0099E94B1 /* SetupGuideView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAF1EADE5958349770CE6D69 /* SetupGuideView.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 2B8DDC710BD3430C82E5C684 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 7FA5FB810CD14E3EF2830B5F /* Project object */; + proxyType = 1; + remoteGlobalIDString = C707902F2AC99A166223934F; + remoteInfo = PacketTunnel; + }; + 60D47013E91CCA78687C2E90 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 7FA5FB810CD14E3EF2830B5F /* Project object */; + proxyType = 1; + remoteGlobalIDString = 70F9CA505ABDF65D6F84D6DD; + remoteInfo = ProxyCore; + }; + A1EB54C0FEF9ECCB84D0656A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 7FA5FB810CD14E3EF2830B5F /* Project object */; + proxyType = 1; + remoteGlobalIDString = 70F9CA505ABDF65D6F84D6DD; + remoteInfo = ProxyCore; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 18983BA864E985F5D52307F7 /* Embed Foundation Extensions */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 13; + files = ( + AB808FC6FBA5DB69260AD642 /* PacketTunnel.appex in Embed Foundation Extensions */, + ); + name = "Embed Foundation Extensions"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 0235538D05FCD58BB88004AB /* ProxyApp.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = ProxyApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 074C4C0E9529236CB373091C /* RulesRepository.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RulesRepository.swift; sourceTree = ""; }; + 075A09C6B272A53485322E22 /* TrafficRowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrafficRowView.swift; sourceTree = ""; }; + 097285BB4EF5D3115F7F09BF /* PacketTunnelProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PacketTunnelProvider.swift; sourceTree = ""; }; + 11F4B5CB6D7868661D6846B1 /* BreakpointRule.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BreakpointRule.swift; sourceTree = ""; }; + 15B1AA944B076F281D2926BA /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; + 173FF6F938E59C6FD5733FED /* ComposeEditorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeEditorView.swift; sourceTree = ""; }; + 1C130891674901F95EFF6C10 /* CertificateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CertificateView.swift; sourceTree = ""; }; + 2704184BD5C72B01D95A6BD8 /* DomainGroup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DomainGroup.swift; sourceTree = ""; }; + 27159F89C452CEF6FFE21FC9 /* MoreView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoreView.swift; sourceTree = ""; }; + 28FE75F0F15AA8A6A47422D5 /* DNSSpoofingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DNSSpoofingView.swift; sourceTree = ""; }; + 2F228CD8526A2D7CD3F283A4 /* BlockListEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlockListEntry.swift; sourceTree = ""; }; + 4506DB95E7CB1AD63D7BDBFD /* IPCManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IPCManager.swift; sourceTree = ""; }; + 519A53ABF80C96A2F7BE48C0 /* DomainDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DomainDetailView.swift; sourceTree = ""; }; + 5235D9F2226096BF7BCCB45B /* CapturedTraffic.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CapturedTraffic.swift; sourceTree = ""; }; + 52F71C43C1B985E45828AF13 /* MethodBadge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MethodBadge.swift; sourceTree = ""; }; + 5D18045C7039E4D081D2E0FB /* SSLProxyingListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLProxyingListView.swift; sourceTree = ""; }; + 637C568F583A70F1B0F951AC /* RequestDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RequestDetailView.swift; sourceTree = ""; }; + 66E52853A3CF25765660F938 /* CertificateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CertificateManager.swift; sourceTree = ""; }; + 67F12E77EB9B01FFC29EE452 /* ProxyApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProxyApp.swift; sourceTree = ""; }; + 6897481A0E0AFC428D7B0760 /* NoCachingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoCachingView.swift; sourceTree = ""; }; + 6DE284C06437A69DA262860D /* AdvancedSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdvancedSettingsView.swift; sourceTree = ""; }; + 6F02A950CF29A22F5EC9BD3B /* FilterChipsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilterChipsView.swift; sourceTree = ""; }; + 6FC29FEF9E5C7AE175FE49A9 /* AppSettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppSettingsView.swift; sourceTree = ""; }; + 72C4B5CB3F4FD77839836ED4 /* ConnectHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConnectHandler.swift; sourceTree = ""; }; + 777EEE35DFFD4F3411B3FCE3 /* ComposeRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeRequest.swift; sourceTree = ""; }; + 7AF0747C1BE12B4259866382 /* EmptyStateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmptyStateView.swift; sourceTree = ""; }; + 86F3E254F52DA9F9345B69FF /* TrafficRepository.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrafficRepository.swift; sourceTree = ""; }; + 8C1921178726BCFB9689CD40 /* PinView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PinView.swift; sourceTree = ""; }; + 8E977B7F6D1876286BD79D75 /* DatabaseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseManager.swift; sourceTree = ""; }; + A0874F5DFE7C72F953E6FC41 /* GlueHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlueHandler.swift; sourceTree = ""; }; + A1F1AF90F2B1B2004D34587E /* HTTPCaptureHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPCaptureHandler.swift; sourceTree = ""; }; + A2D5D80F2ABE544DDA4D672F /* KeyValueRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyValueRow.swift; sourceTree = ""; }; + A9C7DCE312827E925D474D1C /* BlockListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlockListView.swift; sourceTree = ""; }; + AB466F4510A96A63A4D28BB2 /* HomeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeView.swift; sourceTree = ""; }; + B2FD8501FF5549114D704AED /* PacketTunnel.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = PacketTunnel.entitlements; sourceTree = ""; }; + B38485B7FCE595D168C1C846 /* CURLParser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CURLParser.swift; sourceTree = ""; }; + C79DF53F3FB49209C5D4C072 /* ToggleHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ToggleHeaderView.swift; sourceTree = ""; }; + D2BB3537EE02470EC6CF8856 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + D69E8CA968380EEC4CEEAC58 /* SSLProxyingEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLProxyingEntry.swift; sourceTree = ""; }; + DAC65A5C14A2D9474DC55BAD /* AppState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppState.swift; sourceTree = ""; }; + DAEBD24F668D1AA572F4A669 /* MapLocalRule.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MapLocalRule.swift; sourceTree = ""; }; + DD774DF1EE6D16C71CDBDE39 /* ProxyApp.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ProxyApp.entitlements; sourceTree = ""; }; + DEE5A751E8F7842716D8D9C5 /* CURLImportView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CURLImportView.swift; sourceTree = ""; }; + E026D97293D56740403666A3 /* WildcardMatcher.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WildcardMatcher.swift; sourceTree = ""; }; + E7B122B086EE413B9FFA987D /* MITMHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MITMHandler.swift; sourceTree = ""; }; + E8A7A619BD4FEF8FE1299DDD /* DNSSpoofRule.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DNSSpoofRule.swift; sourceTree = ""; }; + E8F864AD4A39C9F503DE3F13 /* ProxyServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProxyServer.swift; sourceTree = ""; }; + ECBC2F9C7D32A3D7BA4AFDA9 /* ComposeListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeListView.swift; sourceTree = ""; }; + EF5C063A725B07CB7B19654C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + F1E030EAC76D5AD8FFC4CE41 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = ""; }; + F23D9B9787A45AF89ED0ACD1 /* StatusBadge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusBadge.swift; sourceTree = ""; }; + F2E3E2A57818A9523AE4909C /* BreakpointRulesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BreakpointRulesView.swift; sourceTree = ""; }; + F6B4BCD97141A64AFC5E679A /* MapLocalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MapLocalView.swift; sourceTree = ""; }; + FAF1EADE5958349770CE6D69 /* SetupGuideView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetupGuideView.swift; sourceTree = ""; }; + FD6BDB66B8FF54D24E75D9DA /* ComposeRepository.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComposeRepository.swift; sourceTree = ""; }; + FE274B16256054C197609357 /* PacketTunnel.appex */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = "wrapper.app-extension"; path = PacketTunnel.appex; sourceTree = BUILT_PRODUCTS_DIR; }; + FFBBFDC8A74655F6BABEC8F2 /* ProxyCore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ProxyCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 05D57CEC5B368CD87F234174 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + D5F263D81C5381B39E3D92D9 /* GRDB in Frameworks */, + 1773C53EAEA72B3B586F9881 /* NIOCore in Frameworks */, + BF30AC37B886A0CBC171CC0C /* NIOPosix in Frameworks */, + 261724F00B739E099F864897 /* NIOSSL in Frameworks */, + AA32CFF139FE1EE996452DB1 /* NIOHTTP1 in Frameworks */, + 9368026FF53296BDD315D114 /* NIOExtras in Frameworks */, + 9A5AD5BB0DA413AF852084EF /* X509 in Frameworks */, + FF490C33F07B362A6E3A04C9 /* Crypto in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3559DCAAF7D3A7EA0BECE73A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 044C2A568C13E889BC2AE30C /* ProxyCore.framework in Frameworks */, + 8B71F895F74E16DA92D557DE /* GRDB in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 91899A80204278D56425775F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEFC3E0A75A2012829208A94 /* ProxyCore.framework in Frameworks */, + 0AD1CD2C01C1818765918E79 /* GRDB in Frameworks */, + 078E6456816B5FD9C8F8693C /* NIOCore in Frameworks */, + F5EA05A3520645ABD5FD6266 /* NIOPosix in Frameworks */, + DEC2257E2B9263AA09F9EF2C /* NIOSSL in Frameworks */, + 580734EA8A5E30B56AAD592C /* NIOHTTP1 in Frameworks */, + E9D761ACA5FF7955B5BDCBA4 /* NIOExtras in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 07551BC26B6F4B61A9429EC5 /* SharedComponents */ = { + isa = PBXGroup; + children = ( + 7AF0747C1BE12B4259866382 /* EmptyStateView.swift */, + 6F02A950CF29A22F5EC9BD3B /* FilterChipsView.swift */, + A2D5D80F2ABE544DDA4D672F /* KeyValueRow.swift */, + 52F71C43C1B985E45828AF13 /* MethodBadge.swift */, + F23D9B9787A45AF89ED0ACD1 /* StatusBadge.swift */, + C79DF53F3FB49209C5D4C072 /* ToggleHeaderView.swift */, + ); + path = SharedComponents; + sourceTree = ""; + }; + 1114887FD8B2F9A6BE0E4475 /* More */ = { + isa = PBXGroup; + children = ( + 6DE284C06437A69DA262860D /* AdvancedSettingsView.swift */, + 6FC29FEF9E5C7AE175FE49A9 /* AppSettingsView.swift */, + A9C7DCE312827E925D474D1C /* BlockListView.swift */, + F2E3E2A57818A9523AE4909C /* BreakpointRulesView.swift */, + 1C130891674901F95EFF6C10 /* CertificateView.swift */, + 28FE75F0F15AA8A6A47422D5 /* DNSSpoofingView.swift */, + F6B4BCD97141A64AFC5E679A /* MapLocalView.swift */, + 27159F89C452CEF6FFE21FC9 /* MoreView.swift */, + 6897481A0E0AFC428D7B0760 /* NoCachingView.swift */, + FAF1EADE5958349770CE6D69 /* SetupGuideView.swift */, + 5D18045C7039E4D081D2E0FB /* SSLProxyingListView.swift */, + ); + path = More; + sourceTree = ""; + }; + 1354E8EF36D80616DEF747E3 /* Compose */ = { + isa = PBXGroup; + children = ( + 173FF6F938E59C6FD5733FED /* ComposeEditorView.swift */, + ECBC2F9C7D32A3D7BA4AFDA9 /* ComposeListView.swift */, + DEE5A751E8F7842716D8D9C5 /* CURLImportView.swift */, + ); + path = Compose; + sourceTree = ""; + }; + 41BB88F9F406199D5494FDEF /* PacketTunnel */ = { + isa = PBXGroup; + children = ( + EF5C063A725B07CB7B19654C /* Info.plist */, + 097285BB4EF5D3115F7F09BF /* PacketTunnelProvider.swift */, + BA08A8A12533E665A72EB416 /* Entitlements */, + ); + path = PacketTunnel; + sourceTree = ""; + }; + 49CFB7F3A8DD44B9313FC99D /* Products */ = { + isa = PBXGroup; + children = ( + FE274B16256054C197609357 /* PacketTunnel.appex */, + 0235538D05FCD58BB88004AB /* ProxyApp.app */, + FFBBFDC8A74655F6BABEC8F2 /* ProxyCore.framework */, + ); + name = Products; + sourceTree = ""; + }; + 61BD1E354028B533324024ED /* UI */ = { + isa = PBXGroup; + children = ( + 1354E8EF36D80616DEF747E3 /* Compose */, + FDCBA9B2A31EC97076464FAF /* Home */, + 1114887FD8B2F9A6BE0E4475 /* More */, + 893A350BEF5F6EA2C78852B3 /* Pin */, + 07551BC26B6F4B61A9429EC5 /* SharedComponents */, + ); + path = UI; + sourceTree = ""; + }; + 893A350BEF5F6EA2C78852B3 /* Pin */ = { + isa = PBXGroup; + children = ( + 8C1921178726BCFB9689CD40 /* PinView.swift */, + ); + path = Pin; + sourceTree = ""; + }; + 959F93E4BA49D780759AC4AE /* Models */ = { + isa = PBXGroup; + children = ( + 2F228CD8526A2D7CD3F283A4 /* BlockListEntry.swift */, + 11F4B5CB6D7868661D6846B1 /* BreakpointRule.swift */, + 5235D9F2226096BF7BCCB45B /* CapturedTraffic.swift */, + 777EEE35DFFD4F3411B3FCE3 /* ComposeRequest.swift */, + E8A7A619BD4FEF8FE1299DDD /* DNSSpoofRule.swift */, + 2704184BD5C72B01D95A6BD8 /* DomainGroup.swift */, + DAEBD24F668D1AA572F4A669 /* MapLocalRule.swift */, + D69E8CA968380EEC4CEEAC58 /* SSLProxyingEntry.swift */, + ); + path = Models; + sourceTree = ""; + }; + 96CBCE24BD025F4D914BA359 /* ProxyEngine */ = { + isa = PBXGroup; + children = ( + 66E52853A3CF25765660F938 /* CertificateManager.swift */, + 72C4B5CB3F4FD77839836ED4 /* ConnectHandler.swift */, + A0874F5DFE7C72F953E6FC41 /* GlueHandler.swift */, + A1F1AF90F2B1B2004D34587E /* HTTPCaptureHandler.swift */, + E7B122B086EE413B9FFA987D /* MITMHandler.swift */, + E8F864AD4A39C9F503DE3F13 /* ProxyServer.swift */, + ); + path = ProxyEngine; + sourceTree = ""; + }; + A1D2A318294056A02B3D0036 /* App */ = { + isa = PBXGroup; + children = ( + DAC65A5C14A2D9474DC55BAD /* AppState.swift */, + 15B1AA944B076F281D2926BA /* ContentView.swift */, + D2BB3537EE02470EC6CF8856 /* Info.plist */, + 67F12E77EB9B01FFC29EE452 /* ProxyApp.swift */, + D271C91E25E2194956FDDE81 /* Entitlements */, + ); + path = App; + sourceTree = ""; + }; + B4D9B6568773EF994E3C6A59 /* DataLayer */ = { + isa = PBXGroup; + children = ( + CE58B911DDD796742F2596AE /* Database */, + 959F93E4BA49D780759AC4AE /* Models */, + BB4DFD21307BDCB7FACE8BFF /* Repositories */, + ); + path = DataLayer; + sourceTree = ""; + }; + BA08A8A12533E665A72EB416 /* Entitlements */ = { + isa = PBXGroup; + children = ( + B2FD8501FF5549114D704AED /* PacketTunnel.entitlements */, + ); + path = Entitlements; + sourceTree = ""; + }; + BB4DFD21307BDCB7FACE8BFF /* Repositories */ = { + isa = PBXGroup; + children = ( + FD6BDB66B8FF54D24E75D9DA /* ComposeRepository.swift */, + 074C4C0E9529236CB373091C /* RulesRepository.swift */, + 86F3E254F52DA9F9345B69FF /* TrafficRepository.swift */, + ); + path = Repositories; + sourceTree = ""; + }; + CE58B911DDD796742F2596AE /* Database */ = { + isa = PBXGroup; + children = ( + 8E977B7F6D1876286BD79D75 /* DatabaseManager.swift */, + ); + path = Database; + sourceTree = ""; + }; + D271C91E25E2194956FDDE81 /* Entitlements */ = { + isa = PBXGroup; + children = ( + DD774DF1EE6D16C71CDBDE39 /* ProxyApp.entitlements */, + ); + path = Entitlements; + sourceTree = ""; + }; + DB5183BCE0B690BE0937F924 /* Shared */ = { + isa = PBXGroup; + children = ( + F1E030EAC76D5AD8FFC4CE41 /* Constants.swift */, + B38485B7FCE595D168C1C846 /* CURLParser.swift */, + 4506DB95E7CB1AD63D7BDBFD /* IPCManager.swift */, + E026D97293D56740403666A3 /* WildcardMatcher.swift */, + ); + path = Shared; + sourceTree = ""; + }; + F4DC7647CDACD11EA806CCBC = { + isa = PBXGroup; + children = ( + A1D2A318294056A02B3D0036 /* App */, + 41BB88F9F406199D5494FDEF /* PacketTunnel */, + F612ECA9542143613CE9F8F0 /* Sources */, + 61BD1E354028B533324024ED /* UI */, + 49CFB7F3A8DD44B9313FC99D /* Products */, + ); + sourceTree = ""; + }; + F612ECA9542143613CE9F8F0 /* Sources */ = { + isa = PBXGroup; + children = ( + B4D9B6568773EF994E3C6A59 /* DataLayer */, + 96CBCE24BD025F4D914BA359 /* ProxyEngine */, + DB5183BCE0B690BE0937F924 /* Shared */, + ); + name = Sources; + path = ProxyCore/Sources; + sourceTree = ""; + }; + FDCBA9B2A31EC97076464FAF /* Home */ = { + isa = PBXGroup; + children = ( + 519A53ABF80C96A2F7BE48C0 /* DomainDetailView.swift */, + AB466F4510A96A63A4D28BB2 /* HomeView.swift */, + 637C568F583A70F1B0F951AC /* RequestDetailView.swift */, + 075A09C6B272A53485322E22 /* TrafficRowView.swift */, + ); + path = Home; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 2300A5AA6E7BFEFBD7C0D1ED /* ProxyApp */ = { + isa = PBXNativeTarget; + buildConfigurationList = EC03B67BCA3C49D1F9E3F538 /* Build configuration list for PBXNativeTarget "ProxyApp" */; + buildPhases = ( + AF5D1EED56C2B32DDC71C5A4 /* Sources */, + 3559DCAAF7D3A7EA0BECE73A /* Frameworks */, + 18983BA864E985F5D52307F7 /* Embed Foundation Extensions */, + ); + buildRules = ( + ); + dependencies = ( + C4AF7000670A7653D7E85327 /* PBXTargetDependency */, + DE40559C9728CDCE427D8996 /* PBXTargetDependency */, + ); + name = ProxyApp; + packageProductDependencies = ( + 425205F9256BA5CD3D743B30 /* GRDB */, + ); + productName = ProxyApp; + productReference = 0235538D05FCD58BB88004AB /* ProxyApp.app */; + productType = "com.apple.product-type.application"; + }; + 70F9CA505ABDF65D6F84D6DD /* ProxyCore */ = { + isa = PBXNativeTarget; + buildConfigurationList = A71CD7086139EDA325C7C633 /* Build configuration list for PBXNativeTarget "ProxyCore" */; + buildPhases = ( + A1AF215119C2E806EC455036 /* Sources */, + 05D57CEC5B368CD87F234174 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ProxyCore; + packageProductDependencies = ( + B23BF84F58802C2FD4181AD2 /* GRDB */, + 2DE391CB5A75FCC4AC9A7B64 /* NIOCore */, + 7ACEE8638C00CA74E27095D3 /* NIOPosix */, + F7677A32280A2AB999BBC1DA /* NIOSSL */, + 8A99B87B3538F636F618F358 /* NIOHTTP1 */, + E3702F97C3DF37F2C4BEE30C /* NIOExtras */, + 302E511C58383FFA46C46C1A /* X509 */, + ED925608F42DF4F167F4AD6A /* Crypto */, + ); + productName = ProxyCore; + productReference = FFBBFDC8A74655F6BABEC8F2 /* ProxyCore.framework */; + productType = "com.apple.product-type.framework"; + }; + C707902F2AC99A166223934F /* PacketTunnel */ = { + isa = PBXNativeTarget; + buildConfigurationList = C08BF5A2BB29F160D521D06F /* Build configuration list for PBXNativeTarget "PacketTunnel" */; + buildPhases = ( + 4C8175F7133F38B4DA387631 /* Sources */, + 91899A80204278D56425775F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + EA9FEBEB1E4BE777FD29C662 /* PBXTargetDependency */, + ); + name = PacketTunnel; + packageProductDependencies = ( + 4984B6EFE9C646250BBC622F /* GRDB */, + BE056A6D2498A5D37D3D654F /* NIOCore */, + 2B0A2F194C23CE100A7B16B6 /* NIOPosix */, + 2C7F42CDC12F03C0FDD6539A /* NIOSSL */, + 2C85D26D13198732391DB72A /* NIOHTTP1 */, + 11DB0A1E449F691613E238DE /* NIOExtras */, + ); + productName = PacketTunnel; + productReference = FE274B16256054C197609357 /* PacketTunnel.appex */; + productType = "com.apple.product-type.app-extension"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 7FA5FB810CD14E3EF2830B5F /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 2630; + TargetAttributes = { + 2300A5AA6E7BFEFBD7C0D1ED = { + DevelopmentTeam = ""; + ProvisioningStyle = Automatic; + }; + 70F9CA505ABDF65D6F84D6DD = { + DevelopmentTeam = ""; + ProvisioningStyle = Automatic; + }; + C707902F2AC99A166223934F = { + DevelopmentTeam = ""; + ProvisioningStyle = Automatic; + }; + }; + }; + buildConfigurationList = 7306E97FDC8838264957D050 /* Build configuration list for PBXProject "ProxyApp" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = F4DC7647CDACD11EA806CCBC; + minimizedProjectReferenceProxies = 1; + packageReferences = ( + 66704B6AC3BDA168FF5DFD37 /* XCRemoteSwiftPackageReference "GRDB.swift" */, + 3E7691AA8929525CAC738FC5 /* XCRemoteSwiftPackageReference "swift-certificates" */, + BF38BBC56E412F25947ECED0 /* XCRemoteSwiftPackageReference "swift-crypto" */, + 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */, + 2FE2868EB18FE0C5308D2320 /* XCRemoteSwiftPackageReference "swift-nio-extras" */, + 22C1FB1D2F618C70B47E42CD /* XCRemoteSwiftPackageReference "swift-nio-ssl" */, + ); + preferredProjectObjectVersion = 77; + projectDirPath = ""; + projectRoot = ""; + targets = ( + C707902F2AC99A166223934F /* PacketTunnel */, + 2300A5AA6E7BFEFBD7C0D1ED /* ProxyApp */, + 70F9CA505ABDF65D6F84D6DD /* ProxyCore */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 4C8175F7133F38B4DA387631 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7034A0C2F5A8CDC56360D73A /* PacketTunnelProvider.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A1AF215119C2E806EC455036 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 80B683DD5BDBF9C1F6A512E6 /* BlockListEntry.swift in Sources */, + F32E1472628FC2FD12CC833C /* BreakpointRule.swift in Sources */, + E7AA10E880398BCC7E2642EC /* CURLParser.swift in Sources */, + 5CBD25190C3F1AED2CCD821A /* CapturedTraffic.swift in Sources */, + AB7825AE02AFC8C30B87CB6D /* CertificateManager.swift in Sources */, + F38240D6A5DF02C96345910F /* ComposeRepository.swift in Sources */, + B703C5C4402C3821B94FED7F /* ComposeRequest.swift in Sources */, + 4C1A9246FCBC2F86E0D33E10 /* ConnectHandler.swift in Sources */, + 020C7E9BFD5FB376A5B5AB92 /* Constants.swift in Sources */, + 56C49856550867A6DD6360A2 /* DNSSpoofRule.swift in Sources */, + BBFB2C1995747DBD3B1A322B /* DatabaseManager.swift in Sources */, + 79FE52B43CBAF0F42EAA5926 /* DomainGroup.swift in Sources */, + C07BCF735C7ED4DDC54CED7A /* GlueHandler.swift in Sources */, + FD565FCB905CB38529F4AF19 /* HTTPCaptureHandler.swift in Sources */, + 34E1EA5C2AA423CB092D99B7 /* IPCManager.swift in Sources */, + 41E9BEEBA72730B7D9B8DDA6 /* MITMHandler.swift in Sources */, + 73197B515ABE80AB74BC232A /* MapLocalRule.swift in Sources */, + 5B66F70CBCE439C4E1A5D108 /* ProxyServer.swift in Sources */, + 9D2AF127D52466CC1DF030C7 /* RulesRepository.swift in Sources */, + 9E7B90C28927E808B6EE8275 /* SSLProxyingEntry.swift in Sources */, + B7E0A7EDA5ECD495D8AE1B1F /* TrafficRepository.swift in Sources */, + 6F9A607918651BB36266193A /* WildcardMatcher.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AF5D1EED56C2B32DDC71C5A4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2D294CFFDB2FF485FDDF338E /* AdvancedSettingsView.swift in Sources */, + 1B346F9DF3D2319ED2CE49BD /* AppSettingsView.swift in Sources */, + A946C1681FB46D11AA6912B0 /* AppState.swift in Sources */, + AA23DE16F97A24279BBC6C1E /* BlockListView.swift in Sources */, + 4556109D775B65AC4D596E67 /* BreakpointRulesView.swift in Sources */, + 9A91E027039087C8E07F224B /* CURLImportView.swift in Sources */, + E7497BB12483B0928783579F /* CertificateView.swift in Sources */, + 59C38D09525034A6E4D4DDBE /* ComposeEditorView.swift in Sources */, + 1032DF442393FF744C5D6CB7 /* ComposeListView.swift in Sources */, + C659BA93C402A36E3E108706 /* ContentView.swift in Sources */, + AD0314CCE960088687E23B9C /* DNSSpoofingView.swift in Sources */, + 25DFC386BDBFC3B799E7ADCF /* DomainDetailView.swift in Sources */, + D7D0DED251BC60F65CA595BC /* EmptyStateView.swift in Sources */, + 161B0B0900010F54252B2D3D /* FilterChipsView.swift in Sources */, + 3E0939BAB9A087647A8943A2 /* HomeView.swift in Sources */, + 268C1BC427C7CC81DCF6C7C8 /* KeyValueRow.swift in Sources */, + 5CCD73D04194E548C72A9482 /* MapLocalView.swift in Sources */, + B1ED1B3C0D80C2D0DCD48EBF /* MethodBadge.swift in Sources */, + 67A1B4E0EF5F307638959DD8 /* MoreView.swift in Sources */, + BB1A565DEF2504F7B1031366 /* NoCachingView.swift in Sources */, + FF47A342C5D326B1CDFBA554 /* PinView.swift in Sources */, + 8258F5ED1BD2A12C52FED4EE /* ProxyApp.swift in Sources */, + 47FCBF7C704629E6760E1B0C /* RequestDetailView.swift in Sources */, + 36BA84C1E610292F4DC98D1A /* SSLProxyingListView.swift in Sources */, + FF970F984CE302E0099E94B1 /* SetupGuideView.swift in Sources */, + AE4AEED1C775E143C8E364AB /* StatusBadge.swift in Sources */, + 0472CBEB3A89C801E4057FBA /* ToggleHeaderView.swift in Sources */, + 0510F681F9E47AF338D0DCFF /* TrafficRowView.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + C4AF7000670A7653D7E85327 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = C707902F2AC99A166223934F /* PacketTunnel */; + targetProxy = 2B8DDC710BD3430C82E5C684 /* PBXContainerItemProxy */; + }; + DE40559C9728CDCE427D8996 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 70F9CA505ABDF65D6F84D6DD /* ProxyCore */; + targetProxy = A1EB54C0FEF9ECCB84D0656A /* PBXContainerItemProxy */; + }; + EA9FEBEB1E4BE777FD29C662 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 70F9CA505ABDF65D6F84D6DD /* ProxyCore */; + targetProxy = 60D47013E91CCA78687C2E90 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 2EEEC070361A624E7DEB9625 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_ENTITLEMENTS = PacketTunnel/Entitlements/PacketTunnel.entitlements; + INFOPLIST_FILE = PacketTunnel/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.treyt.proxyapp.PacketTunnel; + SDKROOT = iphoneos; + SWIFT_STRICT_CONCURRENCY = complete; + SWIFT_VERSION = 5; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3B2C04C048A83ABF8204E23D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_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; + CODE_SIGN_STYLE = Automatic; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + DEVELOPMENT_TEAM = ""; + 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 = ( + "$(inherited)", + "DEBUG=1", + ); + 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 = 17.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 6.0; + }; + name = Debug; + }; + 61964906422627D2EF266198 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = App/Entitlements/ProxyApp.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + INFOPLIST_FILE = App/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.treyt.proxyapp; + SDKROOT = iphoneos; + SWIFT_STRICT_CONCURRENCY = complete; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 61C79C106F9B9AD846135D95 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.treyt.proxyapp.ProxyCore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_STRICT_CONCURRENCY = complete; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; + 88B1E5A2622E69D2D0BCD5CD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.treyt.proxyapp.ProxyCore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_STRICT_CONCURRENCY = complete; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 8B8FCE81C675A6DD3F42DB9E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_ENTITLEMENTS = PacketTunnel/Entitlements/PacketTunnel.entitlements; + INFOPLIST_FILE = PacketTunnel/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.treyt.proxyapp.PacketTunnel; + SDKROOT = iphoneos; + SWIFT_STRICT_CONCURRENCY = complete; + SWIFT_VERSION = 5; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + CF027E7CE33583E2EDEEFAA7 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_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; + CODE_SIGN_STYLE = Automatic; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEVELOPMENT_TEAM = ""; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 6.0; + }; + name = Release; + }; + EFF7C0D30C6FE917F257A19E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = App/Entitlements/ProxyApp.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + INFOPLIST_FILE = App/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.treyt.proxyapp; + SDKROOT = iphoneos; + SWIFT_STRICT_CONCURRENCY = complete; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 7306E97FDC8838264957D050 /* Build configuration list for PBXProject "ProxyApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3B2C04C048A83ABF8204E23D /* Debug */, + CF027E7CE33583E2EDEEFAA7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + A71CD7086139EDA325C7C633 /* Build configuration list for PBXNativeTarget "ProxyCore" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 88B1E5A2622E69D2D0BCD5CD /* Debug */, + 61C79C106F9B9AD846135D95 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + C08BF5A2BB29F160D521D06F /* Build configuration list for PBXNativeTarget "PacketTunnel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2EEEC070361A624E7DEB9625 /* Debug */, + 8B8FCE81C675A6DD3F42DB9E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + EC03B67BCA3C49D1F9E3F538 /* Build configuration list for PBXNativeTarget "ProxyApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EFF7C0D30C6FE917F257A19E /* Debug */, + 61964906422627D2EF266198 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + +/* Begin XCRemoteSwiftPackageReference section */ + 22C1FB1D2F618C70B47E42CD /* XCRemoteSwiftPackageReference "swift-nio-ssl" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/apple/swift-nio-ssl.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 2.27.0; + }; + }; + 2FE2868EB18FE0C5308D2320 /* XCRemoteSwiftPackageReference "swift-nio-extras" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/apple/swift-nio-extras.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 1.22.0; + }; + }; + 3E7691AA8929525CAC738FC5 /* XCRemoteSwiftPackageReference "swift-certificates" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/apple/swift-certificates.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 1.5.0; + }; + }; + 66704B6AC3BDA168FF5DFD37 /* XCRemoteSwiftPackageReference "GRDB.swift" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/groue/GRDB.swift.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 7.4.1; + }; + }; + 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/apple/swift-nio.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 2.65.0; + }; + }; + BF38BBC56E412F25947ECED0 /* XCRemoteSwiftPackageReference "swift-crypto" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/apple/swift-crypto.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 3.5.0; + }; + }; +/* End XCRemoteSwiftPackageReference section */ + +/* Begin XCSwiftPackageProductDependency section */ + 11DB0A1E449F691613E238DE /* NIOExtras */ = { + isa = XCSwiftPackageProductDependency; + package = 2FE2868EB18FE0C5308D2320 /* XCRemoteSwiftPackageReference "swift-nio-extras" */; + productName = NIOExtras; + }; + 2B0A2F194C23CE100A7B16B6 /* NIOPosix */ = { + isa = XCSwiftPackageProductDependency; + package = 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */; + productName = NIOPosix; + }; + 2C7F42CDC12F03C0FDD6539A /* NIOSSL */ = { + isa = XCSwiftPackageProductDependency; + package = 22C1FB1D2F618C70B47E42CD /* XCRemoteSwiftPackageReference "swift-nio-ssl" */; + productName = NIOSSL; + }; + 2C85D26D13198732391DB72A /* NIOHTTP1 */ = { + isa = XCSwiftPackageProductDependency; + package = 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */; + productName = NIOHTTP1; + }; + 2DE391CB5A75FCC4AC9A7B64 /* NIOCore */ = { + isa = XCSwiftPackageProductDependency; + package = 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */; + productName = NIOCore; + }; + 302E511C58383FFA46C46C1A /* X509 */ = { + isa = XCSwiftPackageProductDependency; + package = 3E7691AA8929525CAC738FC5 /* XCRemoteSwiftPackageReference "swift-certificates" */; + productName = X509; + }; + 425205F9256BA5CD3D743B30 /* GRDB */ = { + isa = XCSwiftPackageProductDependency; + package = 66704B6AC3BDA168FF5DFD37 /* XCRemoteSwiftPackageReference "GRDB.swift" */; + productName = GRDB; + }; + 4984B6EFE9C646250BBC622F /* GRDB */ = { + isa = XCSwiftPackageProductDependency; + package = 66704B6AC3BDA168FF5DFD37 /* XCRemoteSwiftPackageReference "GRDB.swift" */; + productName = GRDB; + }; + 7ACEE8638C00CA74E27095D3 /* NIOPosix */ = { + isa = XCSwiftPackageProductDependency; + package = 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */; + productName = NIOPosix; + }; + 8A99B87B3538F636F618F358 /* NIOHTTP1 */ = { + isa = XCSwiftPackageProductDependency; + package = 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */; + productName = NIOHTTP1; + }; + B23BF84F58802C2FD4181AD2 /* GRDB */ = { + isa = XCSwiftPackageProductDependency; + package = 66704B6AC3BDA168FF5DFD37 /* XCRemoteSwiftPackageReference "GRDB.swift" */; + productName = GRDB; + }; + BE056A6D2498A5D37D3D654F /* NIOCore */ = { + isa = XCSwiftPackageProductDependency; + package = 8341BFADEB5EA31123791331 /* XCRemoteSwiftPackageReference "swift-nio" */; + productName = NIOCore; + }; + E3702F97C3DF37F2C4BEE30C /* NIOExtras */ = { + isa = XCSwiftPackageProductDependency; + package = 2FE2868EB18FE0C5308D2320 /* XCRemoteSwiftPackageReference "swift-nio-extras" */; + productName = NIOExtras; + }; + ED925608F42DF4F167F4AD6A /* Crypto */ = { + isa = XCSwiftPackageProductDependency; + package = BF38BBC56E412F25947ECED0 /* XCRemoteSwiftPackageReference "swift-crypto" */; + productName = Crypto; + }; + F7677A32280A2AB999BBC1DA /* NIOSSL */ = { + isa = XCSwiftPackageProductDependency; + package = 22C1FB1D2F618C70B47E42CD /* XCRemoteSwiftPackageReference "swift-nio-ssl" */; + productName = NIOSSL; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 7FA5FB810CD14E3EF2830B5F /* Project object */; +} diff --git a/ProxyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ProxyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ProxyApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ProxyApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/ProxyApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved new file mode 100644 index 0000000..978d2d6 --- /dev/null +++ b/ProxyApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -0,0 +1,168 @@ +{ + "originHash" : "b327656135bbe0b2015d567b05d112748ef896613ca69a92da75c18064ce73a1", + "pins" : [ + { + "identity" : "grdb.swift", + "kind" : "remoteSourceControl", + "location" : "https://github.com/groue/GRDB.swift.git", + "state" : { + "revision" : "36e30a6f1ef10e4194f6af0cff90888526f0c115", + "version" : "7.10.0" + } + }, + { + "identity" : "swift-algorithms", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-algorithms.git", + "state" : { + "revision" : "87e50f483c54e6efd60e885f7f5aa946cee68023", + "version" : "1.2.1" + } + }, + { + "identity" : "swift-asn1", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-asn1.git", + "state" : { + "revision" : "9f542610331815e29cc3821d3b6f488db8715517", + "version" : "1.6.0" + } + }, + { + "identity" : "swift-async-algorithms", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-async-algorithms.git", + "state" : { + "revision" : "9d349bcc328ac3c31ce40e746b5882742a0d1272", + "version" : "1.1.3" + } + }, + { + "identity" : "swift-atomics", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-atomics.git", + "state" : { + "revision" : "b601256eab081c0f92f059e12818ac1d4f178ff7", + "version" : "1.3.0" + } + }, + { + "identity" : "swift-certificates", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-certificates.git", + "state" : { + "revision" : "24ccdeeeed4dfaae7955fcac9dbf5489ed4f1a25", + "version" : "1.18.0" + } + }, + { + "identity" : "swift-collections", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-collections.git", + "state" : { + "revision" : "6675bc0ff86e61436e615df6fc5174e043e57924", + "version" : "1.4.1" + } + }, + { + "identity" : "swift-crypto", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-crypto.git", + "state" : { + "revision" : "95ba0316a9b733e92bb6b071255ff46263bbe7dc", + "version" : "3.15.1" + } + }, + { + "identity" : "swift-http-structured-headers", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-http-structured-headers.git", + "state" : { + "revision" : "76d7627bd88b47bf5a0f8497dd244885960dde0b", + "version" : "1.6.0" + } + }, + { + "identity" : "swift-http-types", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-http-types.git", + "state" : { + "revision" : "45eb0224913ea070ec4fba17291b9e7ecf4749ca", + "version" : "1.5.1" + } + }, + { + "identity" : "swift-log", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-log.git", + "state" : { + "revision" : "8c0f217f01000dd30f60d6e536569ad4e74291f9", + "version" : "1.11.0" + } + }, + { + "identity" : "swift-nio", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio.git", + "state" : { + "revision" : "558f24a4647193b5a0e2104031b71c55d31ff83a", + "version" : "2.97.1" + } + }, + { + "identity" : "swift-nio-extras", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio-extras.git", + "state" : { + "revision" : "abcf5312eb8ed2fb11916078aef7c46b06f20813", + "version" : "1.33.0" + } + }, + { + "identity" : "swift-nio-http2", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio-http2.git", + "state" : { + "revision" : "6d8d596f0a9bfebb925733003731fe2d749b7e02", + "version" : "1.42.0" + } + }, + { + "identity" : "swift-nio-ssl", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-nio-ssl.git", + "state" : { + "revision" : "df9c3406028e3297246e6e7081977a167318b692", + "version" : "2.36.1" + } + }, + { + "identity" : "swift-numerics", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-numerics.git", + "state" : { + "revision" : "0c0290ff6b24942dadb83a929ffaaa1481df04a2", + "version" : "1.1.1" + } + }, + { + "identity" : "swift-service-lifecycle", + "kind" : "remoteSourceControl", + "location" : "https://github.com/swift-server/swift-service-lifecycle.git", + "state" : { + "revision" : "9829955b385e5bb88128b73f1b8389e9b9c3191a", + "version" : "2.11.0" + } + }, + { + "identity" : "swift-system", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-system.git", + "state" : { + "revision" : "7c6ad0fc39d0763e0b699210e4124afd5041c5df", + "version" : "1.6.4" + } + } + ], + "version" : 3 +} diff --git a/ProxyApp.xcodeproj/project.xcworkspace/xcuserdata/treyt.xcuserdatad/UserInterfaceState.xcuserstate b/ProxyApp.xcodeproj/project.xcworkspace/xcuserdata/treyt.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..a101998 Binary files /dev/null and b/ProxyApp.xcodeproj/project.xcworkspace/xcuserdata/treyt.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/ProxyApp.xcodeproj/xcuserdata/treyt.xcuserdatad/xcschemes/xcschememanagement.plist b/ProxyApp.xcodeproj/xcuserdata/treyt.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..6e0d86d --- /dev/null +++ b/ProxyApp.xcodeproj/xcuserdata/treyt.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,44 @@ + + + + + SchemeUserState + + Associations (Playground).xcscheme + + orderHint + 2 + + MyPlayground (Playground).xcscheme + + orderHint + 3 + + PacketTunnel.xcscheme_^#shared#^_ + + orderHint + 1 + + ProxyApp.xcscheme_^#shared#^_ + + orderHint + 0 + + ProxyCore.xcscheme_^#shared#^_ + + orderHint + 0 + + Tour (Playground).xcscheme + + orderHint + 4 + + TransactionObserver (Playground).xcscheme + + orderHint + 5 + + + + diff --git a/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift b/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift new file mode 100644 index 0000000..26b4822 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift @@ -0,0 +1,134 @@ +import Foundation +import GRDB + +public final class DatabaseManager: Sendable { + public let dbPool: DatabasePool + + public static let shared: DatabaseManager = { + let url = FileManager.default + .containerURL(forSecurityApplicationGroupIdentifier: "group.com.treyt.proxyapp")! + .appendingPathComponent("proxy.sqlite") + return try! DatabaseManager(path: url.path) + }() + + public init(path: String) throws { + var config = Configuration() + config.prepareDatabase { db in + // WAL mode for cross-process concurrent access + try db.execute(sql: "PRAGMA journal_mode = WAL") + try db.execute(sql: "PRAGMA synchronous = NORMAL") + } + dbPool = try DatabasePool(path: path, configuration: config) + try migrate() + } + + private func migrate() throws { + var migrator = DatabaseMigrator() + + migrator.registerMigration("v1_create_tables") { db in + try db.create(table: "captured_traffic") { t in + t.autoIncrementedPrimaryKey("id") + t.column("requestId", .text).notNull().unique() + t.column("domain", .text).notNull().indexed() + t.column("url", .text).notNull() + t.column("method", .text).notNull() + t.column("scheme", .text).notNull() + t.column("statusCode", .integer) + t.column("statusText", .text) + + t.column("requestHeaders", .text) + t.column("requestBody", .blob) + t.column("requestBodySize", .integer).notNull().defaults(to: 0) + t.column("requestContentType", .text) + t.column("queryParameters", .text) + + t.column("responseHeaders", .text) + t.column("responseBody", .blob) + t.column("responseBodySize", .integer).notNull().defaults(to: 0) + t.column("responseContentType", .text) + + t.column("startedAt", .double).notNull() + t.column("completedAt", .double) + t.column("durationMs", .integer) + + t.column("isSslDecrypted", .boolean).notNull().defaults(to: false) + t.column("isPinned", .boolean).notNull().defaults(to: false) + t.column("isWebsocket", .boolean).notNull().defaults(to: false) + t.column("isHidden", .boolean).notNull().defaults(to: false) + + t.column("createdAt", .double).notNull() + } + + try db.create(index: "idx_traffic_started_at", on: "captured_traffic", columns: ["startedAt"]) + try db.create(index: "idx_traffic_pinned", on: "captured_traffic", columns: ["isPinned"]) + + try db.create(table: "ssl_proxying_entries") { t in + t.autoIncrementedPrimaryKey("id") + t.column("domainPattern", .text).notNull() + t.column("isInclude", .boolean).notNull() + t.column("createdAt", .double).notNull() + } + + try db.create(table: "block_list_entries") { t in + t.autoIncrementedPrimaryKey("id") + t.column("name", .text) + t.column("urlPattern", .text).notNull() + t.column("method", .text).notNull().defaults(to: "ANY") + t.column("includeSubpaths", .boolean).notNull().defaults(to: true) + t.column("blockAction", .text).notNull().defaults(to: "block_and_hide") + t.column("isEnabled", .boolean).notNull().defaults(to: true) + t.column("createdAt", .double).notNull() + } + + try db.create(table: "breakpoint_rules") { t in + t.autoIncrementedPrimaryKey("id") + t.column("name", .text) + t.column("urlPattern", .text).notNull() + t.column("method", .text).notNull().defaults(to: "ANY") + t.column("interceptRequest", .boolean).notNull().defaults(to: true) + t.column("interceptResponse", .boolean).notNull().defaults(to: true) + t.column("isEnabled", .boolean).notNull().defaults(to: true) + t.column("createdAt", .double).notNull() + } + + try db.create(table: "map_local_rules") { t in + t.autoIncrementedPrimaryKey("id") + t.column("name", .text) + t.column("urlPattern", .text).notNull() + t.column("method", .text).notNull().defaults(to: "ANY") + t.column("responseStatus", .integer).notNull().defaults(to: 200) + t.column("responseHeaders", .text) + t.column("responseBody", .blob) + t.column("responseContentType", .text) + t.column("isEnabled", .boolean).notNull().defaults(to: true) + t.column("createdAt", .double).notNull() + } + + try db.create(table: "dns_spoof_rules") { t in + t.autoIncrementedPrimaryKey("id") + t.column("sourceDomain", .text).notNull() + t.column("targetDomain", .text).notNull() + t.column("isEnabled", .boolean).notNull().defaults(to: true) + t.column("createdAt", .double).notNull() + } + + try db.create(table: "compose_requests") { t in + t.autoIncrementedPrimaryKey("id") + t.column("name", .text).notNull().defaults(to: "New Request") + t.column("method", .text).notNull().defaults(to: "GET") + t.column("url", .text) + t.column("headers", .text) + t.column("queryParameters", .text) + t.column("body", .text) + t.column("bodyContentType", .text) + t.column("responseStatus", .integer) + t.column("responseHeaders", .text) + t.column("responseBody", .blob) + t.column("lastSentAt", .double) + t.column("createdAt", .double).notNull() + } + } + + try migrator.migrate(dbPool) + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift b/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift new file mode 100644 index 0000000..83a2092 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift @@ -0,0 +1,57 @@ +import Foundation +import GRDB + +public enum BlockAction: String, Codable, Sendable, CaseIterable { + case blockAndHide = "block_and_hide" + case blockAndDisplay = "block_and_display" + case hideOnly = "hide_only" + + public var displayName: String { + switch self { + case .blockAndHide: "Block & Hide Request" + case .blockAndDisplay: "Block & Display" + case .hideOnly: "Hide but not Block" + } + } +} + +public struct BlockListEntry: Codable, FetchableRecord, MutablePersistableRecord, Identifiable, Sendable { + public var id: Int64? + public var name: String? + public var urlPattern: String + public var method: String + public var includeSubpaths: Bool + public var blockAction: String + public var isEnabled: Bool + public var createdAt: Double + + public static let databaseTableName = "block_list_entries" + + public mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } + + public init( + id: Int64? = nil, + name: String? = nil, + urlPattern: String, + method: String = "ANY", + includeSubpaths: Bool = true, + blockAction: BlockAction = .blockAndHide, + isEnabled: Bool = true, + createdAt: Double = Date().timeIntervalSince1970 + ) { + self.id = id + self.name = name + self.urlPattern = urlPattern + self.method = method + self.includeSubpaths = includeSubpaths + self.blockAction = blockAction.rawValue + self.isEnabled = isEnabled + self.createdAt = createdAt + } + + public var action: BlockAction { + BlockAction(rawValue: blockAction) ?? .blockAndHide + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift b/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift new file mode 100644 index 0000000..cff3f27 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift @@ -0,0 +1,39 @@ +import Foundation +import GRDB + +public struct BreakpointRule: Codable, FetchableRecord, MutablePersistableRecord, Identifiable, Sendable { + public var id: Int64? + public var name: String? + public var urlPattern: String + public var method: String + public var interceptRequest: Bool + public var interceptResponse: Bool + public var isEnabled: Bool + public var createdAt: Double + + public static let databaseTableName = "breakpoint_rules" + + public mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } + + public init( + id: Int64? = nil, + name: String? = nil, + urlPattern: String, + method: String = "ANY", + interceptRequest: Bool = true, + interceptResponse: Bool = true, + isEnabled: Bool = true, + createdAt: Double = Date().timeIntervalSince1970 + ) { + self.id = id + self.name = name + self.urlPattern = urlPattern + self.method = method + self.interceptRequest = interceptRequest + self.interceptResponse = interceptResponse + self.isEnabled = isEnabled + self.createdAt = createdAt + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift b/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift new file mode 100644 index 0000000..23ad072 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift @@ -0,0 +1,140 @@ +import Foundation +import GRDB + +public struct CapturedTraffic: Codable, FetchableRecord, MutablePersistableRecord, Identifiable, Sendable { + public var id: Int64? + public var requestId: String + public var domain: String + public var url: String + public var method: String + public var scheme: String + public var statusCode: Int? + public var statusText: String? + + // Request + public var requestHeaders: String? + public var requestBody: Data? + public var requestBodySize: Int + public var requestContentType: String? + public var queryParameters: String? + + // Response + public var responseHeaders: String? + public var responseBody: Data? + public var responseBodySize: Int + public var responseContentType: String? + + // Timing + public var startedAt: Double + public var completedAt: Double? + public var durationMs: Int? + + // Metadata + public var isSslDecrypted: Bool + public var isPinned: Bool + public var isWebsocket: Bool + public var isHidden: Bool + + public var createdAt: Double + + public static let databaseTableName = "captured_traffic" + + public mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } + + public init( + id: Int64? = nil, + requestId: String = UUID().uuidString, + domain: String, + url: String, + method: String, + scheme: String, + statusCode: Int? = nil, + statusText: String? = nil, + requestHeaders: String? = nil, + requestBody: Data? = nil, + requestBodySize: Int = 0, + requestContentType: String? = nil, + queryParameters: String? = nil, + responseHeaders: String? = nil, + responseBody: Data? = nil, + responseBodySize: Int = 0, + responseContentType: String? = nil, + startedAt: Double = Date().timeIntervalSince1970, + completedAt: Double? = nil, + durationMs: Int? = nil, + isSslDecrypted: Bool = false, + isPinned: Bool = false, + isWebsocket: Bool = false, + isHidden: Bool = false, + createdAt: Double = Date().timeIntervalSince1970 + ) { + self.id = id + self.requestId = requestId + self.domain = domain + self.url = url + self.method = method + self.scheme = scheme + self.statusCode = statusCode + self.statusText = statusText + self.requestHeaders = requestHeaders + self.requestBody = requestBody + self.requestBodySize = requestBodySize + self.requestContentType = requestContentType + self.queryParameters = queryParameters + self.responseHeaders = responseHeaders + self.responseBody = responseBody + self.responseBodySize = responseBodySize + self.responseContentType = responseContentType + self.startedAt = startedAt + self.completedAt = completedAt + self.durationMs = durationMs + self.isSslDecrypted = isSslDecrypted + self.isPinned = isPinned + self.isWebsocket = isWebsocket + self.isHidden = isHidden + self.createdAt = createdAt + } +} + +// MARK: - Computed Properties + +extension CapturedTraffic { + public var decodedRequestHeaders: [String: String] { + guard let data = requestHeaders?.data(using: .utf8), + let dict = try? JSONDecoder().decode([String: String].self, from: data) else { + return [:] + } + return dict + } + + public var decodedResponseHeaders: [String: String] { + guard let data = responseHeaders?.data(using: .utf8), + let dict = try? JSONDecoder().decode([String: String].self, from: data) else { + return [:] + } + return dict + } + + public var decodedQueryParameters: [String: String] { + guard let data = queryParameters?.data(using: .utf8), + let dict = try? JSONDecoder().decode([String: String].self, from: data) else { + return [:] + } + return dict + } + + public var startDate: Date { + Date(timeIntervalSince1970: startedAt) + } + + public var formattedDuration: String { + guard let ms = durationMs else { return "-" } + if ms < 1000 { + return "\(ms) ms" + } else { + return String(format: "%.1f s", Double(ms) / 1000.0) + } + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift b/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift new file mode 100644 index 0000000..a0d4be7 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift @@ -0,0 +1,54 @@ +import Foundation +import GRDB + +public struct ComposeRequest: Codable, FetchableRecord, MutablePersistableRecord, Identifiable, Sendable { + public var id: Int64? + public var name: String + public var method: String + public var url: String? + public var headers: String? + public var queryParameters: String? + public var body: String? + public var bodyContentType: String? + public var responseStatus: Int? + public var responseHeaders: String? + public var responseBody: Data? + public var lastSentAt: Double? + public var createdAt: Double + + public static let databaseTableName = "compose_requests" + + public mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } + + public init( + id: Int64? = nil, + name: String = "New Request", + method: String = "GET", + url: String? = nil, + headers: String? = nil, + queryParameters: String? = nil, + body: String? = nil, + bodyContentType: String? = nil, + responseStatus: Int? = nil, + responseHeaders: String? = nil, + responseBody: Data? = nil, + lastSentAt: Double? = nil, + createdAt: Double = Date().timeIntervalSince1970 + ) { + self.id = id + self.name = name + self.method = method + self.url = url + self.headers = headers + self.queryParameters = queryParameters + self.body = body + self.bodyContentType = bodyContentType + self.responseStatus = responseStatus + self.responseHeaders = responseHeaders + self.responseBody = responseBody + self.lastSentAt = lastSentAt + self.createdAt = createdAt + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift b/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift new file mode 100644 index 0000000..ebf5ee1 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift @@ -0,0 +1,30 @@ +import Foundation +import GRDB + +public struct DNSSpoofRule: Codable, FetchableRecord, MutablePersistableRecord, Identifiable, Sendable { + public var id: Int64? + public var sourceDomain: String + public var targetDomain: String + public var isEnabled: Bool + public var createdAt: Double + + public static let databaseTableName = "dns_spoof_rules" + + public mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } + + public init( + id: Int64? = nil, + sourceDomain: String, + targetDomain: String, + isEnabled: Bool = true, + createdAt: Double = Date().timeIntervalSince1970 + ) { + self.id = id + self.sourceDomain = sourceDomain + self.targetDomain = targetDomain + self.isEnabled = isEnabled + self.createdAt = createdAt + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift b/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift new file mode 100644 index 0000000..2e0c625 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift @@ -0,0 +1,13 @@ +import Foundation +import GRDB + +public struct DomainGroup: Decodable, FetchableRecord, Identifiable, Hashable, Sendable { + public var id: String { domain } + public var domain: String + public var requestCount: Int + + public init(domain: String, requestCount: Int) { + self.domain = domain + self.requestCount = requestCount + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift b/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift new file mode 100644 index 0000000..d128168 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift @@ -0,0 +1,45 @@ +import Foundation +import GRDB + +public struct MapLocalRule: Codable, FetchableRecord, MutablePersistableRecord, Identifiable, Sendable { + public var id: Int64? + public var name: String? + public var urlPattern: String + public var method: String + public var responseStatus: Int + public var responseHeaders: String? + public var responseBody: Data? + public var responseContentType: String? + public var isEnabled: Bool + public var createdAt: Double + + public static let databaseTableName = "map_local_rules" + + public mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } + + public init( + id: Int64? = nil, + name: String? = nil, + urlPattern: String, + method: String = "ANY", + responseStatus: Int = 200, + responseHeaders: String? = nil, + responseBody: Data? = nil, + responseContentType: String? = nil, + isEnabled: Bool = true, + createdAt: Double = Date().timeIntervalSince1970 + ) { + self.id = id + self.name = name + self.urlPattern = urlPattern + self.method = method + self.responseStatus = responseStatus + self.responseHeaders = responseHeaders + self.responseBody = responseBody + self.responseContentType = responseContentType + self.isEnabled = isEnabled + self.createdAt = createdAt + } +} diff --git a/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift b/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift new file mode 100644 index 0000000..1e7d285 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift @@ -0,0 +1,22 @@ +import Foundation +import GRDB + +public struct SSLProxyingEntry: Codable, FetchableRecord, MutablePersistableRecord, Identifiable, Sendable { + public var id: Int64? + public var domainPattern: String + public var isInclude: Bool + public var createdAt: Double + + public static let databaseTableName = "ssl_proxying_entries" + + public mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } + + public init(id: Int64? = nil, domainPattern: String, isInclude: Bool, createdAt: Double = Date().timeIntervalSince1970) { + self.id = id + self.domainPattern = domainPattern + self.isInclude = isInclude + self.createdAt = createdAt + } +} diff --git a/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift b/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift new file mode 100644 index 0000000..97c5181 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift @@ -0,0 +1,32 @@ +import Foundation +import GRDB + +public final class ComposeRepository: Sendable { + private let db: DatabaseManager + + public init(db: DatabaseManager = .shared) { + self.db = db + } + + public func observeRequests() -> ValueObservation> { + ValueObservation.tracking { db in + try ComposeRequest.order(Column("createdAt").desc).fetchAll(db) + } + } + + public func insert(_ request: inout ComposeRequest) throws { + try db.dbPool.write { db in try request.insert(db) } + } + + public func update(_ request: ComposeRequest) throws { + try db.dbPool.write { db in try request.update(db) } + } + + public func delete(id: Int64) throws { + try db.dbPool.write { db in _ = try ComposeRequest.deleteOne(db, id: id) } + } + + public func deleteAll() throws { + try db.dbPool.write { db in _ = try ComposeRequest.deleteAll(db) } + } +} diff --git a/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift b/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift new file mode 100644 index 0000000..440205f --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift @@ -0,0 +1,128 @@ +import Foundation +import GRDB + +public final class RulesRepository: Sendable { + private let db: DatabaseManager + + public init(db: DatabaseManager = .shared) { + self.db = db + } + + // MARK: - SSL Proxying + + public func observeSSLEntries() -> ValueObservation> { + ValueObservation.tracking { db in + try SSLProxyingEntry.order(Column("createdAt").desc).fetchAll(db) + } + } + + public func fetchAllSSLEntries() throws -> [SSLProxyingEntry] { + try db.dbPool.read { db in + try SSLProxyingEntry.fetchAll(db) + } + } + + public func insertSSLEntry(_ entry: inout SSLProxyingEntry) throws { + try db.dbPool.write { db in try entry.insert(db) } + } + + public func deleteSSLEntry(id: Int64) throws { + try db.dbPool.write { db in _ = try SSLProxyingEntry.deleteOne(db, id: id) } + } + + public func deleteAllSSLEntries() throws { + try db.dbPool.write { db in _ = try SSLProxyingEntry.deleteAll(db) } + } + + // MARK: - Block List + + public func observeBlockListEntries() -> ValueObservation> { + ValueObservation.tracking { db in + try BlockListEntry.order(Column("createdAt").desc).fetchAll(db) + } + } + + public func insertBlockEntry(_ entry: inout BlockListEntry) throws { + try db.dbPool.write { db in try entry.insert(db) } + } + + public func updateBlockEntry(_ entry: BlockListEntry) throws { + try db.dbPool.write { db in try entry.update(db) } + } + + public func deleteBlockEntry(id: Int64) throws { + try db.dbPool.write { db in _ = try BlockListEntry.deleteOne(db, id: id) } + } + + public func deleteAllBlockEntries() throws { + try db.dbPool.write { db in _ = try BlockListEntry.deleteAll(db) } + } + + // MARK: - Breakpoint Rules + + public func observeBreakpointRules() -> ValueObservation> { + ValueObservation.tracking { db in + try BreakpointRule.order(Column("createdAt").desc).fetchAll(db) + } + } + + public func insertBreakpointRule(_ rule: inout BreakpointRule) throws { + try db.dbPool.write { db in try rule.insert(db) } + } + + public func updateBreakpointRule(_ rule: BreakpointRule) throws { + try db.dbPool.write { db in try rule.update(db) } + } + + public func deleteBreakpointRule(id: Int64) throws { + try db.dbPool.write { db in _ = try BreakpointRule.deleteOne(db, id: id) } + } + + public func deleteAllBreakpointRules() throws { + try db.dbPool.write { db in _ = try BreakpointRule.deleteAll(db) } + } + + // MARK: - Map Local Rules + + public func observeMapLocalRules() -> ValueObservation> { + ValueObservation.tracking { db in + try MapLocalRule.order(Column("createdAt").desc).fetchAll(db) + } + } + + public func insertMapLocalRule(_ rule: inout MapLocalRule) throws { + try db.dbPool.write { db in try rule.insert(db) } + } + + public func updateMapLocalRule(_ rule: MapLocalRule) throws { + try db.dbPool.write { db in try rule.update(db) } + } + + public func deleteMapLocalRule(id: Int64) throws { + try db.dbPool.write { db in _ = try MapLocalRule.deleteOne(db, id: id) } + } + + public func deleteAllMapLocalRules() throws { + try db.dbPool.write { db in _ = try MapLocalRule.deleteAll(db) } + } + + // MARK: - DNS Spoof Rules + + public func observeDNSSpoofRules() -> ValueObservation> { + ValueObservation.tracking { db in + try DNSSpoofRule.order(Column("createdAt").desc).fetchAll(db) + } + } + + public func insertDNSSpoofRule(_ rule: inout DNSSpoofRule) throws { + try db.dbPool.write { db in try rule.insert(db) } + } + + public func deleteDNSSpoofRule(id: Int64) throws { + try db.dbPool.write { db in _ = try DNSSpoofRule.deleteOne(db, id: id) } + } + + public func deleteAllDNSSpoofRules() throws { + try db.dbPool.write { db in _ = try DNSSpoofRule.deleteAll(db) } + } +} diff --git a/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift b/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift new file mode 100644 index 0000000..a94e920 --- /dev/null +++ b/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift @@ -0,0 +1,110 @@ +import Foundation +import GRDB + +public final class TrafficRepository: Sendable { + private let db: DatabaseManager + + public init(db: DatabaseManager = .shared) { + self.db = db + } + + // MARK: - Domain Groups + + public func observeDomainGroups() -> ValueObservation> { + ValueObservation.tracking { db in + try DomainGroup.fetchAll(db, sql: """ + SELECT domain, COUNT(*) as requestCount + FROM captured_traffic + WHERE isHidden = 0 + GROUP BY domain + ORDER BY MAX(startedAt) DESC + """) + } + } + + // MARK: - Traffic for Domain + + public func observeTraffic(forDomain domain: String) -> ValueObservation> { + ValueObservation.tracking { db in + try CapturedTraffic + .filter(Column("domain") == domain) + .filter(Column("isHidden") == false) + .order(Column("startedAt").desc) + .fetchAll(db) + } + } + + // MARK: - Pinned + + public func observePinnedTraffic() -> ValueObservation> { + ValueObservation.tracking { db in + try CapturedTraffic + .filter(Column("isPinned") == true) + .order(Column("startedAt").desc) + .fetchAll(db) + } + } + + // MARK: - Single Request + + public func traffic(byId id: Int64) throws -> CapturedTraffic? { + try db.dbPool.read { db in + try CapturedTraffic.fetchOne(db, id: id) + } + } + + // MARK: - Write Operations + + public func insert(_ traffic: inout CapturedTraffic) throws { + try db.dbPool.write { db in + try traffic.insert(db) + } + } + + public func updateResponse( + requestId: String, + statusCode: Int, + statusText: String, + responseHeaders: String?, + responseBody: Data?, + responseBodySize: Int, + responseContentType: String?, + completedAt: Double, + durationMs: Int + ) throws { + try db.dbPool.write { db in + try db.execute(sql: """ + UPDATE captured_traffic SET + statusCode = ?, statusText = ?, + responseHeaders = ?, responseBody = ?, + responseBodySize = ?, responseContentType = ?, + completedAt = ?, durationMs = ? + WHERE requestId = ? + """, arguments: [ + statusCode, statusText, + responseHeaders, responseBody, + responseBodySize, responseContentType, + completedAt, durationMs, + requestId + ]) + } + } + + public func togglePin(id: Int64, isPinned: Bool) throws { + try db.dbPool.write { db in + try db.execute(sql: "UPDATE captured_traffic SET isPinned = ? WHERE id = ?", arguments: [isPinned, id]) + } + } + + public func deleteAll() throws { + try db.dbPool.write { db in + _ = try CapturedTraffic.deleteAll(db) + } + } + + public func deleteForDomain(_ domain: String) throws { + try db.dbPool.write { db in + _ = try CapturedTraffic.filter(Column("domain") == domain).deleteAll(db) + } + } +} diff --git a/ProxyCore/Sources/ProxyEngine/CertificateManager.swift b/ProxyCore/Sources/ProxyEngine/CertificateManager.swift new file mode 100644 index 0000000..8930408 --- /dev/null +++ b/ProxyCore/Sources/ProxyEngine/CertificateManager.swift @@ -0,0 +1,290 @@ +import Foundation +import X509 +import Crypto +import SwiftASN1 +import NIOSSL +#if canImport(UIKit) +import UIKit +#endif + +/// Manages root CA generation, leaf certificate signing, and an LRU certificate cache. +public final class CertificateManager: @unchecked Sendable { + public static let shared = CertificateManager() + + private let lock = NSLock() + private var rootCAKey: P256.Signing.PrivateKey? + private var rootCACert: Certificate? + private var rootCANIOSSL: NIOSSLCertificate? + + // LRU cache for generated leaf certificates + private var certCache: [String: (NIOSSLCertificate, NIOSSLPrivateKey)] = [:] + private var cacheOrder: [String] = [] + + private let keychainCAKeyTag = "com.treyt.proxyapp.ca.privatekey" + private let keychainCACertTag = "com.treyt.proxyapp.ca.cert" + + private init() { + loadOrGenerateCA() + } + + // MARK: - Public API + + public var hasCA: Bool { + lock.lock() + defer { lock.unlock() } + return rootCACert != nil + } + + /// Get or generate a leaf certificate + key for the given domain. + public func tlsServerContext(for domain: String) throws -> NIOSSLContext { + lock.lock() + defer { lock.unlock() } + + if let cached = certCache[domain] { + cacheOrder.removeAll { $0 == domain } + cacheOrder.append(domain) + return try makeServerContext(cert: cached.0, key: cached.1) + } + + guard let caKey = rootCAKey, let caCert = rootCACert else { + throw CertificateError.caNotFound + } + + let (leafCert, leafKey) = try generateLeaf(domain: domain, caKey: caKey, caCert: caCert) + + // Serialize to DER/PEM for NIOSSL + var serializer = DER.Serializer() + try leafCert.serialize(into: &serializer) + let leafDER = serializer.serializedBytes + let nioLeafCert = try NIOSSLCertificate(bytes: leafDER, format: .der) + let leafKeyPEM = leafKey.pemRepresentation + let nioLeafKey = try NIOSSLPrivateKey(bytes: [UInt8](leafKeyPEM.utf8), format: .pem) + + certCache[domain] = (nioLeafCert, nioLeafKey) + cacheOrder.append(domain) + + while cacheOrder.count > ProxyConstants.certificateCacheSize { + let evicted = cacheOrder.removeFirst() + certCache.removeValue(forKey: evicted) + } + + return try makeServerContext(cert: nioLeafCert, key: nioLeafKey) + } + + /// Export the root CA as DER data for user installation. + public func exportCACertificateDER() -> [UInt8]? { + lock.lock() + defer { lock.unlock() } + guard let cert = rootCACert else { return nil } + var serializer = DER.Serializer() + try? cert.serialize(into: &serializer) + return serializer.serializedBytes + } + + /// Export as PEM for display. + public func exportCACertificatePEM() -> String? { + lock.lock() + defer { lock.unlock() } + guard let cert = rootCACert else { return nil } + guard let pem = try? cert.serializeAsPEM() else { return nil } + return pem.pemString + } + + public var caNotValidAfter: Date? { + lock.lock() + defer { lock.unlock() } + // notValidAfter is a Time, not directly a Date — we stored the date when generating + return nil // Will be set properly after we store dates + } + + // MARK: - CA Generation + + private func loadOrGenerateCA() { + if loadCAFromKeychain() { return } + + do { + let key = P256.Signing.PrivateKey() + let name = try DistinguishedName { + CommonName("Proxy CA (\(deviceName()))") + OrganizationName("ProxyApp") + } + + let now = Date() + let twoYearsLater = now.addingTimeInterval(365 * 24 * 3600 * 2) + + let extensions = try Certificate.Extensions { + Critical(BasicConstraints.isCertificateAuthority(maxPathLength: 0)) + Critical(KeyUsage(keyCertSign: true, cRLSign: true)) + } + + let cert = try Certificate( + version: .v3, + serialNumber: Certificate.SerialNumber(), + publicKey: .init(key.publicKey), + notValidBefore: now, + notValidAfter: twoYearsLater, + issuer: name, + subject: name, + signatureAlgorithm: .ecdsaWithSHA256, + extensions: extensions, + issuerPrivateKey: .init(key) + ) + + self.rootCAKey = key + self.rootCACert = cert + + var serializer = DER.Serializer() + try cert.serialize(into: &serializer) + let der = serializer.serializedBytes + self.rootCANIOSSL = try NIOSSLCertificate(bytes: der, format: .der) + + saveCAToKeychain(key: key, certDER: der) + print("[CertificateManager] Generated new root CA") + } catch { + print("[CertificateManager] Failed to generate CA: \(error)") + } + } + + // MARK: - Leaf Certificate Generation + + private func generateLeaf( + domain: String, + caKey: P256.Signing.PrivateKey, + caCert: Certificate + ) throws -> (Certificate, P256.Signing.PrivateKey) { + let leafKey = P256.Signing.PrivateKey() + let now = Date() + let oneYearLater = now.addingTimeInterval(365 * 24 * 3600) + + let extensions = try Certificate.Extensions { + Critical(BasicConstraints.notCertificateAuthority) + Critical(KeyUsage(digitalSignature: true)) + try ExtendedKeyUsage([.serverAuth]) + SubjectAlternativeNames([.dnsName(domain)]) + } + + let leafName = try DistinguishedName { + CommonName(domain) + OrganizationName("ProxyApp") + } + + let cert = try Certificate( + version: .v3, + serialNumber: Certificate.SerialNumber(), + publicKey: .init(leafKey.publicKey), + notValidBefore: now, + notValidAfter: oneYearLater, + issuer: caCert.subject, + subject: leafName, + signatureAlgorithm: .ecdsaWithSHA256, + extensions: extensions, + issuerPrivateKey: .init(caKey) + ) + + return (cert, leafKey) + } + + // MARK: - TLS Context + + private func makeServerContext(cert: NIOSSLCertificate, key: NIOSSLPrivateKey) throws -> NIOSSLContext { + var certs = [cert] + if let caCert = rootCANIOSSL { + certs.append(caCert) + } + var config = TLSConfiguration.makeServerConfiguration( + certificateChain: certs.map { .certificate($0) }, + privateKey: .privateKey(key) + ) + config.applicationProtocols = ["http/1.1"] + return try NIOSSLContext(configuration: config) + } + + // MARK: - Keychain + + private func loadCAFromKeychain() -> Bool { + let keyQuery: [String: Any] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: keychainCAKeyTag, + kSecAttrAccessGroup as String: ProxyConstants.appGroupIdentifier, + kSecReturnData as String: true + ] + var keyResult: AnyObject? + guard SecItemCopyMatching(keyQuery as CFDictionary, &keyResult) == errSecSuccess, + let keyData = keyResult as? Data else { return false } + + let certQuery: [String: Any] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: keychainCACertTag, + kSecAttrAccessGroup as String: ProxyConstants.appGroupIdentifier, + kSecReturnData as String: true + ] + var certResult: AnyObject? + guard SecItemCopyMatching(certQuery as CFDictionary, &certResult) == errSecSuccess, + let certData = certResult as? Data else { return false } + + do { + let key = try P256.Signing.PrivateKey(rawRepresentation: keyData) + let cert = try Certificate(derEncoded: [UInt8](certData)) + let nioCert = try NIOSSLCertificate(bytes: [UInt8](certData), format: .der) + + self.rootCAKey = key + self.rootCACert = cert + self.rootCANIOSSL = nioCert + print("[CertificateManager] Loaded CA from Keychain") + return true + } catch { + print("[CertificateManager] Failed to load CA from Keychain: \(error)") + return false + } + } + + private func saveCAToKeychain(key: P256.Signing.PrivateKey, certDER: [UInt8]) { + let keyData = key.rawRepresentation + + // Delete existing entries + for tag in [keychainCAKeyTag, keychainCACertTag] { + let deleteQuery: [String: Any] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: tag, + kSecAttrAccessGroup as String: ProxyConstants.appGroupIdentifier + ] + SecItemDelete(deleteQuery as CFDictionary) + } + + // Save key + let addKeyQuery: [String: Any] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: keychainCAKeyTag, + kSecAttrAccessGroup as String: ProxyConstants.appGroupIdentifier, + kSecValueData as String: keyData, + kSecAttrAccessible as String: kSecAttrAccessibleAfterFirstUnlock + ] + SecItemAdd(addKeyQuery as CFDictionary, nil) + + // Save cert + let addCertQuery: [String: Any] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: keychainCACertTag, + kSecAttrAccessGroup as String: ProxyConstants.appGroupIdentifier, + kSecValueData as String: Data(certDER), + kSecAttrAccessible as String: kSecAttrAccessibleAfterFirstUnlock + ] + SecItemAdd(addCertQuery as CFDictionary, nil) + } + + // MARK: - Helpers + + private func deviceName() -> String { + #if canImport(UIKit) + return UIDevice.current.name + #else + return Host.current().localizedName ?? "Unknown" + #endif + } + + public enum CertificateError: Error { + case notImplemented + case generationFailed + case caNotFound + } +} diff --git a/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift b/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift new file mode 100644 index 0000000..4ffc890 --- /dev/null +++ b/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift @@ -0,0 +1,298 @@ +import Foundation +import NIOCore +import NIOPosix +import NIOHTTP1 + +/// Handles incoming proxy requests: +/// - HTTP CONNECT → establishes TCP tunnel (GlueHandler passthrough, or MITM in Phase 3) +/// - Plain HTTP → connects upstream, forwards request, captures request+response +final class ConnectHandler: ChannelInboundHandler, RemovableChannelHandler { + typealias InboundIn = HTTPServerRequestPart + typealias OutboundOut = HTTPServerResponsePart + + private let trafficRepo: TrafficRepository + + // Buffer request parts until we've connected upstream + private var pendingHead: HTTPRequestHead? + private var pendingBody: [ByteBuffer] = [] + private var pendingEnd: HTTPHeaders? + private var receivedEnd = false + + init(trafficRepo: TrafficRepository) { + self.trafficRepo = trafficRepo + } + + func channelRead(context: ChannelHandlerContext, data: NIOAny) { + let part = unwrapInboundIn(data) + + switch part { + case .head(let head): + if head.method == .CONNECT { + handleConnect(context: context, head: head) + } else { + pendingHead = head + } + case .body(let buffer): + pendingBody.append(buffer) + case .end(let trailers): + if pendingHead != nil { + pendingEnd = trailers + receivedEnd = true + handleHTTPRequest(context: context) + } + } + } + + // MARK: - CONNECT (HTTPS tunnel) + + private func handleConnect(context: ChannelHandlerContext, head: HTTPRequestHead) { + let components = head.uri.split(separator: ":") + let host = String(components[0]) + let port = components.count > 1 ? Int(components[1]) ?? 443 : 443 + + // Check if this domain should be MITM'd (SSL Proxying enabled + domain in include list) + let shouldMITM = shouldInterceptSSL(domain: host) + + // Send 200 Connection Established + let responseHead = HTTPResponseHead(version: .http1_1, status: .ok) + context.write(wrapOutboundOut(.head(responseHead)), promise: nil) + context.writeAndFlush(wrapOutboundOut(.end(nil)), promise: nil) + + if shouldMITM { + // MITM mode: strip HTTP handlers, install MITMHandler + setupMITM(context: context, host: host, port: port) + } else { + // Passthrough mode: record domain-level entry, tunnel raw bytes + recordConnectTraffic(host: host, port: port) + + // We don't need to connect upstream ourselves — GlueHandler does raw forwarding + // But GlueHandler pairs two channels, so we need the remote channel first + ClientBootstrap(group: context.eventLoop) + .channelOption(.socketOption(.so_reuseaddr), value: 1) + .connect(host: host, port: port) + .whenComplete { result in + switch result { + case .success(let remoteChannel): + self.setupGlue(context: context, remoteChannel: remoteChannel) + case .failure(let error): + print("[Proxy] CONNECT passthrough failed to \(host):\(port): \(error)") + context.close(promise: nil) + } + } + } + } + + private func shouldInterceptSSL(domain: String) -> Bool { + guard IPCManager.shared.isSSLProxyingEnabled else { return false } + guard CertificateManager.shared.hasCA else { return false } + + // Check SSL proxying list from database + let rulesRepo = RulesRepository() + do { + let entries = try rulesRepo.fetchAllSSLEntries() + + // Check exclude list first + for entry in entries where !entry.isInclude { + if WildcardMatcher.matches(domain, pattern: entry.domainPattern) { + return false + } + } + + // Check include list + for entry in entries where entry.isInclude { + if WildcardMatcher.matches(domain, pattern: entry.domainPattern) { + return true + } + } + } catch { + print("[Proxy] Failed to check SSL proxying list: \(error)") + } + + return false + } + + private func setupMITM(context: ChannelHandlerContext, host: String, port: Int) { + let mitmHandler = MITMHandler(host: host, port: port, trafficRepo: trafficRepo) + + // Remove HTTP handlers, keep raw bytes for MITMHandler + context.channel.pipeline.handler(type: ByteToMessageHandler.self) + .whenSuccess { handler in + context.channel.pipeline.removeHandler(handler, promise: nil) + } + + context.pipeline.removeHandler(context: context).whenComplete { _ in + context.channel.pipeline.addHandler(mitmHandler).whenFailure { error in + print("[Proxy] Failed to install MITM handler: \(error)") + context.close(promise: nil) + } + } + } + + private func setupGlue(context: ChannelHandlerContext, remoteChannel: Channel) { + let localGlue = GlueHandler() + let remoteGlue = GlueHandler() + localGlue.partner = remoteGlue + remoteGlue.partner = localGlue + + // Remove all HTTP handlers from the client channel, leaving raw bytes + context.channel.pipeline.handler(type: ByteToMessageHandler.self) + .whenSuccess { handler in + context.channel.pipeline.removeHandler(handler, promise: nil) + } + + context.pipeline.removeHandler(context: context).whenComplete { _ in + context.channel.pipeline.addHandler(localGlue).whenSuccess { + remoteChannel.pipeline.addHandler(remoteGlue).whenFailure { _ in + context.close(promise: nil) + remoteChannel.close(promise: nil) + } + } + } + } + + // MARK: - Plain HTTP forwarding + + private func handleHTTPRequest(context: ChannelHandlerContext) { + guard let head = pendingHead else { return } + + // Parse host and port from the absolute URI or Host header + guard let (host, port, path) = parseHTTPTarget(head: head) else { + let responseHead = HTTPResponseHead(version: .http1_1, status: .badRequest) + context.write(wrapOutboundOut(.head(responseHead)), promise: nil) + context.writeAndFlush(wrapOutboundOut(.end(nil)), promise: nil) + return + } + + // Rewrite the request URI to relative path (upstream expects /path, not http://host/path) + var upstreamHead = head + upstreamHead.uri = path + // Ensure Host header is set + if !upstreamHead.headers.contains(name: "Host") { + upstreamHead.headers.add(name: "Host", value: host) + } + + let captureHandler = HTTPCaptureHandler(trafficRepo: trafficRepo, domain: host, scheme: "http") + + ClientBootstrap(group: context.eventLoop) + .channelOption(.socketOption(.so_reuseaddr), value: 1) + .channelInitializer { channel in + // Remote channel: decode HTTP responses, encode HTTP requests + channel.pipeline.addHandler(HTTPRequestEncoder()).flatMap { + channel.pipeline.addHandler(ByteToMessageHandler(HTTPResponseDecoder(leftOverBytesStrategy: .forwardBytes))) + }.flatMap { + channel.pipeline.addHandler(captureHandler) + }.flatMap { + channel.pipeline.addHandler( + HTTPRelayHandler(clientContext: context, wrapResponse: self.wrapOutboundOut) + ) + } + } + .connect(host: host, port: port) + .whenComplete { result in + switch result { + case .success(let remoteChannel): + // Forward the buffered request to upstream + remoteChannel.write(NIOAny(HTTPClientRequestPart.head(upstreamHead)), promise: nil) + for bodyBuffer in self.pendingBody { + remoteChannel.write(NIOAny(HTTPClientRequestPart.body(.byteBuffer(bodyBuffer))), promise: nil) + } + remoteChannel.writeAndFlush(NIOAny(HTTPClientRequestPart.end(self.pendingEnd)), promise: nil) + + // Clear buffered data + self.pendingHead = nil + self.pendingBody.removeAll() + self.pendingEnd = nil + + case .failure(let error): + print("[Proxy] HTTP forward failed to \(host):\(port): \(error)") + let responseHead = HTTPResponseHead(version: .http1_1, status: .badGateway) + context.write(self.wrapOutboundOut(.head(responseHead)), promise: nil) + context.writeAndFlush(self.wrapOutboundOut(.end(nil)), promise: nil) + } + } + } + + // MARK: - URL Parsing + + private func parseHTTPTarget(head: HTTPRequestHead) -> (host: String, port: Int, path: String)? { + // Absolute URI: "http://example.com:8080/path?query" + if head.uri.hasPrefix("http://") || head.uri.hasPrefix("https://") { + guard let url = URLComponents(string: head.uri) else { return nil } + let host = url.host ?? "" + let port = url.port ?? (head.uri.hasPrefix("https") ? 443 : 80) + var path = url.path.isEmpty ? "/" : url.path + if let query = url.query { + path += "?\(query)" + } + return (host, port, path) + } + + // Relative URI with Host header + if let hostHeader = head.headers.first(name: "Host") { + let parts = hostHeader.split(separator: ":") + let host = String(parts[0]) + let port = parts.count > 1 ? Int(parts[1]) ?? 80 : 80 + return (host, port, head.uri) + } + + return nil + } + + // MARK: - CONNECT traffic recording + + private func recordConnectTraffic(host: String, port: Int) { + var traffic = CapturedTraffic( + domain: host, + url: "https://\(host):\(port)", + method: "CONNECT", + scheme: "https", + statusCode: 200, + statusText: "Connection Established", + startedAt: Date().timeIntervalSince1970, + completedAt: Date().timeIntervalSince1970, + durationMs: 0, + isSslDecrypted: false + ) + try? trafficRepo.insert(&traffic) + IPCManager.shared.post(.newTrafficCaptured) + } +} + +// MARK: - HTTPRelayHandler + +/// Relays HTTP responses from the upstream server back to the proxy client. +final class HTTPRelayHandler: ChannelInboundHandler, RemovableChannelHandler { + typealias InboundIn = HTTPClientResponsePart + + private let clientContext: ChannelHandlerContext + private let wrapResponse: (HTTPServerResponsePart) -> NIOAny + + init(clientContext: ChannelHandlerContext, wrapResponse: @escaping (HTTPServerResponsePart) -> NIOAny) { + self.clientContext = clientContext + self.wrapResponse = wrapResponse + } + + func channelRead(context: ChannelHandlerContext, data: NIOAny) { + let part = unwrapInboundIn(data) + + switch part { + case .head(let head): + let serverHead = HTTPResponseHead(version: head.version, status: head.status, headers: head.headers) + clientContext.write(wrapResponse(.head(serverHead)), promise: nil) + case .body(let buffer): + clientContext.write(wrapResponse(.body(.byteBuffer(buffer))), promise: nil) + case .end(let trailers): + clientContext.writeAndFlush(wrapResponse(.end(trailers)), promise: nil) + } + } + + func channelInactive(context: ChannelHandlerContext) { + clientContext.close(promise: nil) + } + + func errorCaught(context: ChannelHandlerContext, error: Error) { + print("[Proxy] Relay error: \(error)") + context.close(promise: nil) + clientContext.close(promise: nil) + } +} diff --git a/ProxyCore/Sources/ProxyEngine/GlueHandler.swift b/ProxyCore/Sources/ProxyEngine/GlueHandler.swift new file mode 100644 index 0000000..ae6dcda --- /dev/null +++ b/ProxyCore/Sources/ProxyEngine/GlueHandler.swift @@ -0,0 +1,66 @@ +import Foundation +import NIOCore + +/// Bidirectional TCP forwarder. Pairs two channels so bytes flow in both directions. +/// Used for CONNECT tunneling (passthrough mode, no MITM). +final class GlueHandler: ChannelInboundHandler, RemovableChannelHandler { + typealias InboundIn = ByteBuffer + typealias OutboundOut = ByteBuffer + + var partner: GlueHandler? + private var context: ChannelHandlerContext? + private var pendingRead = false + + func handlerAdded(context: ChannelHandlerContext) { + self.context = context + } + + func handlerRemoved(context: ChannelHandlerContext) { + self.context = nil + self.partner = nil + } + + func channelRead(context: ChannelHandlerContext, data: NIOAny) { + partner?.write(unwrapInboundIn(data)) + } + + func channelReadComplete(context: ChannelHandlerContext) { + partner?.flush() + } + + func channelInactive(context: ChannelHandlerContext) { + partner?.close() + } + + func errorCaught(context: ChannelHandlerContext, error: Error) { + context.close(promise: nil) + } + + func channelWritabilityChanged(context: ChannelHandlerContext) { + if context.channel.isWritable { + partner?.read() + } + } + + // MARK: - Partner operations + + private func write(_ buffer: ByteBuffer) { + context?.write(wrapOutboundOut(buffer), promise: nil) + } + + private func flush() { + context?.flush() + } + + private func read() { + if let context, !pendingRead { + pendingRead = true + context.read() + pendingRead = false + } + } + + private func close() { + context?.close(promise: nil) + } +} diff --git a/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift b/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift new file mode 100644 index 0000000..a1f0e35 --- /dev/null +++ b/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift @@ -0,0 +1,141 @@ +import Foundation +import NIOCore +import NIOHTTP1 + +/// Captures HTTP request/response pairs and writes them to the traffic database. +/// Inserted into the pipeline after TLS termination (MITM) or for plain HTTP. +final class HTTPCaptureHandler: ChannelDuplexHandler { + typealias InboundIn = HTTPClientResponsePart + typealias InboundOut = HTTPClientResponsePart + typealias OutboundIn = HTTPClientRequestPart + typealias OutboundOut = HTTPClientRequestPart + + private let trafficRepo: TrafficRepository + private let domain: String + private let scheme: String + + private var currentRequestId: String? + private var requestHead: HTTPRequestHead? + private var requestBody = Data() + private var responseHead: HTTPResponseHead? + private var responseBody = Data() + private var requestStartTime: Double = 0 + + init(trafficRepo: TrafficRepository, domain: String, scheme: String = "https") { + self.trafficRepo = trafficRepo + self.domain = domain + self.scheme = scheme + } + + // MARK: - Outbound (Request) + + func write(context: ChannelHandlerContext, data: NIOAny, promise: EventLoopPromise?) { + let part = unwrapOutboundIn(data) + + switch part { + case .head(let head): + currentRequestId = UUID().uuidString + requestHead = head + requestBody = Data() + requestStartTime = Date().timeIntervalSince1970 + case .body(.byteBuffer(let buffer)): + if requestBody.count < ProxyConstants.maxBodySizeBytes { + requestBody.append(contentsOf: buffer.readableBytesView) + } + case .end: + saveRequest() + default: + break + } + + context.write(data, promise: promise) + } + + // MARK: - Inbound (Response) + + func channelRead(context: ChannelHandlerContext, data: NIOAny) { + let part = unwrapInboundIn(data) + + switch part { + case .head(let head): + responseHead = head + responseBody = Data() + case .body(let buffer): + if responseBody.count < ProxyConstants.maxBodySizeBytes { + responseBody.append(contentsOf: buffer.readableBytesView) + } + case .end: + saveResponse() + } + + context.fireChannelRead(data) + } + + // MARK: - Persistence + + private func saveRequest() { + guard let head = requestHead, let reqId = currentRequestId else { return } + + let url = "\(scheme)://\(domain)\(head.uri)" + let headersJSON = encodeHeaders(head.headers) + let queryParams = extractQueryParams(from: head.uri) + + var traffic = CapturedTraffic( + requestId: reqId, + domain: domain, + url: url, + method: head.method.rawValue, + scheme: scheme, + requestHeaders: headersJSON, + requestBody: requestBody.isEmpty ? nil : requestBody, + requestBodySize: requestBody.count, + requestContentType: head.headers.first(name: "Content-Type"), + queryParameters: queryParams, + startedAt: requestStartTime, + isSslDecrypted: scheme == "https" + ) + + try? trafficRepo.insert(&traffic) + } + + private func saveResponse() { + guard let reqId = currentRequestId, let head = responseHead else { return } + + let now = Date().timeIntervalSince1970 + let durationMs = Int((now - requestStartTime) * 1000) + + try? trafficRepo.updateResponse( + requestId: reqId, + statusCode: Int(head.status.code), + statusText: head.status.reasonPhrase, + responseHeaders: encodeHeaders(head.headers), + responseBody: responseBody.isEmpty ? nil : responseBody, + responseBodySize: responseBody.count, + responseContentType: head.headers.first(name: "Content-Type"), + completedAt: now, + durationMs: durationMs + ) + + IPCManager.shared.post(.newTrafficCaptured) + } + + private func encodeHeaders(_ headers: HTTPHeaders) -> String? { + var dict: [String: String] = [:] + for (name, value) in headers { + dict[name] = value + } + guard let data = try? JSONEncoder().encode(dict) else { return nil } + return String(data: data, encoding: .utf8) + } + + private func extractQueryParams(from uri: String) -> String? { + guard let url = URLComponents(string: uri), + let items = url.queryItems, !items.isEmpty else { return nil } + var dict: [String: String] = [:] + for item in items { + dict[item.name] = item.value ?? "" + } + guard let data = try? JSONEncoder().encode(dict) else { return nil } + return String(data: data, encoding: .utf8) + } +} diff --git a/ProxyCore/Sources/ProxyEngine/MITMHandler.swift b/ProxyCore/Sources/ProxyEngine/MITMHandler.swift new file mode 100644 index 0000000..414fce8 --- /dev/null +++ b/ProxyCore/Sources/ProxyEngine/MITMHandler.swift @@ -0,0 +1,294 @@ +import Foundation +import NIOCore +import NIOPosix +import NIOSSL +import NIOHTTP1 + +/// After a CONNECT tunnel is established, this handler: +/// 1. Reads the first bytes from the client to extract the SNI hostname from the TLS ClientHello +/// 2. Generates a per-domain leaf certificate via CertificateManager +/// 3. Terminates client-side TLS with the generated cert +/// 4. Initiates server-side TLS to the real server +/// 5. Installs HTTP codecs + HTTPCaptureHandler on both sides to capture decrypted traffic +final class MITMHandler: ChannelInboundHandler, RemovableChannelHandler { + typealias InboundIn = ByteBuffer + + private let host: String + private let port: Int + private let trafficRepo: TrafficRepository + private let certManager: CertificateManager + + init(host: String, port: Int, trafficRepo: TrafficRepository, certManager: CertificateManager = .shared) { + self.host = host + self.port = port + self.trafficRepo = trafficRepo + self.certManager = certManager + } + + func channelRead(context: ChannelHandlerContext, data: NIOAny) { + var buffer = unwrapInboundIn(data) + + // Extract SNI from ClientHello if possible, otherwise use the CONNECT host + let sniDomain = extractSNI(from: buffer) ?? host + + // Remove this handler — we'll rebuild the pipeline + context.pipeline.removeHandler(self, promise: nil) + + // Get TLS context for this domain + let sslContext: NIOSSLContext + do { + sslContext = try certManager.tlsServerContext(for: sniDomain) + } catch { + print("[MITM] Failed to get TLS context for \(sniDomain): \(error)") + context.close(promise: nil) + return + } + + // Add server-side TLS handler (we are the "server" to the client) + let sslServerHandler = NIOSSLServerHandler(context: sslContext) + let trafficRepo = self.trafficRepo + let host = self.host + let port = self.port + + context.channel.pipeline.addHandler(sslServerHandler, position: .first).flatMap { + // Add HTTP codec after TLS + context.channel.pipeline.addHandler(ByteToMessageHandler(HTTPRequestDecoder())) + }.flatMap { + context.channel.pipeline.addHandler(HTTPResponseEncoder()) + }.flatMap { + // Add the forwarding handler that connects to the real server + context.channel.pipeline.addHandler( + MITMForwardHandler( + remoteHost: host, + remotePort: port, + domain: sniDomain, + trafficRepo: trafficRepo + ) + ) + }.whenComplete { result in + switch result { + case .success: + // Re-fire the original ClientHello bytes so TLS handshake proceeds + context.channel.pipeline.fireChannelRead(NIOAny(buffer)) + case .failure(let error): + print("[MITM] Pipeline setup failed: \(error)") + context.close(promise: nil) + } + } + } + + // MARK: - SNI Extraction + + /// Parse the SNI hostname from a TLS ClientHello message. + private func extractSNI(from buffer: ByteBuffer) -> String? { + var buf = buffer + guard buf.readableBytes >= 43 else { return nil } + + // TLS record header + guard buf.readInteger(as: UInt8.self) == 0x16 else { return nil } // Handshake + let _ = buf.readInteger(as: UInt16.self) // Version + let _ = buf.readInteger(as: UInt16.self) // Length + + // Handshake header + guard buf.readInteger(as: UInt8.self) == 0x01 else { return nil } // ClientHello + let _ = buf.readBytes(length: 3) // Length (3 bytes) + + // Client version + let _ = buf.readInteger(as: UInt16.self) + // Random (32 bytes) + guard buf.readBytes(length: 32) != nil else { return nil } + // Session ID + guard let sessionIdLen = buf.readInteger(as: UInt8.self) else { return nil } + guard buf.readBytes(length: Int(sessionIdLen)) != nil else { return nil } + // Cipher suites + guard let cipherSuitesLen = buf.readInteger(as: UInt16.self) else { return nil } + guard buf.readBytes(length: Int(cipherSuitesLen)) != nil else { return nil } + // Compression methods + guard let compMethodsLen = buf.readInteger(as: UInt8.self) else { return nil } + guard buf.readBytes(length: Int(compMethodsLen)) != nil else { return nil } + + // Extensions + guard let extensionsLen = buf.readInteger(as: UInt16.self) else { return nil } + var extensionsRemaining = Int(extensionsLen) + + while extensionsRemaining > 4 { + guard let extType = buf.readInteger(as: UInt16.self), + let extLen = buf.readInteger(as: UInt16.self) else { return nil } + extensionsRemaining -= 4 + Int(extLen) + + if extType == 0x0000 { // SNI extension + guard let _ = buf.readInteger(as: UInt16.self), // SNI list length + let nameType = buf.readInteger(as: UInt8.self), + nameType == 0x00, // hostname + let nameLen = buf.readInteger(as: UInt16.self), + let nameBytes = buf.readBytes(length: Int(nameLen)) else { + return nil + } + return String(bytes: nameBytes, encoding: .utf8) + } else { + guard buf.readBytes(length: Int(extLen)) != nil else { return nil } + } + } + + return nil + } +} + +// MARK: - MITMForwardHandler + +/// Handles decrypted HTTP from the client, forwards to the real server over TLS, +/// and relays responses back. Captures everything via HTTPCaptureHandler. +final class MITMForwardHandler: ChannelInboundHandler, RemovableChannelHandler { + typealias InboundIn = HTTPServerRequestPart + typealias OutboundOut = HTTPServerResponsePart + + private let remoteHost: String + private let remotePort: Int + private let domain: String + private let trafficRepo: TrafficRepository + private var remoteChannel: Channel? + + // Buffer request parts until upstream is connected + private var pendingParts: [HTTPServerRequestPart] = [] + private var isConnected = false + + init(remoteHost: String, remotePort: Int, domain: String, trafficRepo: TrafficRepository) { + self.remoteHost = remoteHost + self.remotePort = remotePort + self.domain = domain + self.trafficRepo = trafficRepo + } + + func handlerAdded(context: ChannelHandlerContext) { + connectToRemote(context: context) + } + + func channelRead(context: ChannelHandlerContext, data: NIOAny) { + let part = unwrapInboundIn(data) + + if isConnected, let remote = remoteChannel { + // Forward to upstream as client request + switch part { + case .head(let head): + var clientHead = HTTPRequestHead(version: head.version, method: head.method, uri: head.uri, headers: head.headers) + if !clientHead.headers.contains(name: "Host") { + clientHead.headers.add(name: "Host", value: domain) + } + remote.write(NIOAny(HTTPClientRequestPart.head(clientHead)), promise: nil) + case .body(let buffer): + remote.write(NIOAny(HTTPClientRequestPart.body(.byteBuffer(buffer))), promise: nil) + case .end(let trailers): + remote.writeAndFlush(NIOAny(HTTPClientRequestPart.end(trailers)), promise: nil) + } + } else { + pendingParts.append(part) + } + } + + func channelInactive(context: ChannelHandlerContext) { + remoteChannel?.close(promise: nil) + } + + func errorCaught(context: ChannelHandlerContext, error: Error) { + print("[MITMForward] Error: \(error)") + context.close(promise: nil) + remoteChannel?.close(promise: nil) + } + + private func connectToRemote(context: ChannelHandlerContext) { + let captureHandler = HTTPCaptureHandler(trafficRepo: trafficRepo, domain: domain, scheme: "https") + let clientContext = context + + do { + let tlsConfig = TLSConfiguration.makeClientConfiguration() + let sslContext = try NIOSSLContext(configuration: tlsConfig) + + ClientBootstrap(group: context.eventLoop) + .channelOption(.socketOption(.so_reuseaddr), value: 1) + .channelInitializer { channel in + let sniHandler = try! NIOSSLClientHandler(context: sslContext, serverHostname: self.domain) + return channel.pipeline.addHandler(sniHandler).flatMap { + channel.pipeline.addHandler(HTTPRequestEncoder()) + }.flatMap { + channel.pipeline.addHandler(ByteToMessageHandler(HTTPResponseDecoder())) + }.flatMap { + channel.pipeline.addHandler(captureHandler) + }.flatMap { + channel.pipeline.addHandler( + MITMRelayHandler(clientContext: clientContext) + ) + } + } + .connect(host: remoteHost, port: remotePort) + .whenComplete { result in + switch result { + case .success(let channel): + self.remoteChannel = channel + self.isConnected = true + self.flushPending(remote: channel) + case .failure(let error): + print("[MITMForward] Connect to \(self.remoteHost):\(self.remotePort) failed: \(error)") + clientContext.close(promise: nil) + } + } + } catch { + print("[MITMForward] TLS setup failed: \(error)") + context.close(promise: nil) + } + } + + private func flushPending(remote: Channel) { + for part in pendingParts { + switch part { + case .head(let head): + var clientHead = HTTPRequestHead(version: head.version, method: head.method, uri: head.uri, headers: head.headers) + if !clientHead.headers.contains(name: "Host") { + clientHead.headers.add(name: "Host", value: domain) + } + remote.write(NIOAny(HTTPClientRequestPart.head(clientHead)), promise: nil) + case .body(let buffer): + remote.write(NIOAny(HTTPClientRequestPart.body(.byteBuffer(buffer))), promise: nil) + case .end(let trailers): + remote.writeAndFlush(NIOAny(HTTPClientRequestPart.end(trailers)), promise: nil) + } + } + pendingParts.removeAll() + } +} + +// MARK: - MITMRelayHandler + +/// Relays responses from the real server back to the proxy client. +final class MITMRelayHandler: ChannelInboundHandler, RemovableChannelHandler { + typealias InboundIn = HTTPClientResponsePart + + private let clientContext: ChannelHandlerContext + + init(clientContext: ChannelHandlerContext) { + self.clientContext = clientContext + } + + func channelRead(context: ChannelHandlerContext, data: NIOAny) { + let part = unwrapInboundIn(data) + + switch part { + case .head(let head): + let serverResponse = HTTPResponseHead(version: head.version, status: head.status, headers: head.headers) + clientContext.write(NIOAny(HTTPServerResponsePart.head(serverResponse)), promise: nil) + case .body(let buffer): + clientContext.write(NIOAny(HTTPServerResponsePart.body(.byteBuffer(buffer))), promise: nil) + case .end(let trailers): + clientContext.writeAndFlush(NIOAny(HTTPServerResponsePart.end(trailers)), promise: nil) + } + } + + func channelInactive(context: ChannelHandlerContext) { + clientContext.close(promise: nil) + } + + func errorCaught(context: ChannelHandlerContext, error: Error) { + print("[MITMRelay] Error: \(error)") + context.close(promise: nil) + clientContext.close(promise: nil) + } +} diff --git a/ProxyCore/Sources/ProxyEngine/ProxyServer.swift b/ProxyCore/Sources/ProxyEngine/ProxyServer.swift new file mode 100644 index 0000000..6116498 --- /dev/null +++ b/ProxyCore/Sources/ProxyEngine/ProxyServer.swift @@ -0,0 +1,55 @@ +import Foundation +import NIOCore +import NIOPosix +import NIOHTTP1 + +public final class ProxyServer: Sendable { + private let host: String + private let port: Int + private let group: EventLoopGroup + private let trafficRepo: TrafficRepository + nonisolated(unsafe) private var channel: Channel? + + public init( + host: String = ProxyConstants.proxyHost, + port: Int = ProxyConstants.proxyPort, + trafficRepo: TrafficRepository = TrafficRepository() + ) { + self.host = host + self.port = port + // Use only 1 thread to conserve memory in the extension (50MB budget) + self.group = MultiThreadedEventLoopGroup(numberOfThreads: 1) + self.trafficRepo = trafficRepo + } + + public func start() async throws { + let trafficRepo = self.trafficRepo + + let bootstrap = ServerBootstrap(group: group) + .serverChannelOption(.backlog, value: 256) + .serverChannelOption(.socketOption(.so_reuseaddr), value: 1) + .childChannelInitializer { channel in + channel.pipeline.addHandler( + ByteToMessageHandler(HTTPRequestDecoder(leftOverBytesStrategy: .forwardBytes)) + ).flatMap { + channel.pipeline.addHandler(HTTPResponseEncoder()) + }.flatMap { + channel.pipeline.addHandler(ConnectHandler(trafficRepo: trafficRepo)) + } + } + .childChannelOption(.socketOption(.so_reuseaddr), value: 1) + .childChannelOption(.maxMessagesPerRead, value: 16) + + channel = try await bootstrap.bind(host: host, port: port).get() + print("[ProxyServer] Listening on \(host):\(port)") + } + + public func stop() async { + do { + try await channel?.close() + try await group.shutdownGracefully() + } catch { + print("[ProxyServer] Shutdown error: \(error)") + } + } +} diff --git a/ProxyCore/Sources/Shared/CURLParser.swift b/ProxyCore/Sources/Shared/CURLParser.swift new file mode 100644 index 0000000..75bbfb6 --- /dev/null +++ b/ProxyCore/Sources/Shared/CURLParser.swift @@ -0,0 +1,106 @@ +import Foundation + +public struct ParsedCURLRequest: Sendable { + public var method: String = "GET" + public var url: String = "" + public var headers: [(key: String, value: String)] = [] + public var body: String? +} + +public enum CURLParser { + public static func parse(_ curlString: String) -> ParsedCURLRequest? { + var result = ParsedCURLRequest() + let trimmed = curlString.trimmingCharacters(in: .whitespacesAndNewlines) + + guard trimmed.lowercased().hasPrefix("curl") else { return nil } + + let tokens = tokenize(trimmed) + var i = 0 + + while i < tokens.count { + let token = tokens[i] + + switch token { + case "curl": + break + case "-X", "--request": + i += 1 + if i < tokens.count { + result.method = tokens[i].uppercased() + } + case "-H", "--header": + i += 1 + if i < tokens.count { + let header = tokens[i] + if let colonIndex = header.firstIndex(of: ":") { + let key = String(header[header.startIndex.. [String] { + var tokens: [String] = [] + var current = "" + var inSingleQuote = false + var inDoubleQuote = false + var escaped = false + + for char in input { + if escaped { + current.append(char) + escaped = false + continue + } + + if char == "\\" && !inSingleQuote { + escaped = true + continue + } + + if char == "'" && !inDoubleQuote { + inSingleQuote.toggle() + continue + } + + if char == "\"" && !inSingleQuote { + inDoubleQuote.toggle() + continue + } + + if char.isWhitespace && !inSingleQuote && !inDoubleQuote { + if !current.isEmpty { + tokens.append(current) + current = "" + } + continue + } + + current.append(char) + } + + if !current.isEmpty { + tokens.append(current) + } + + return tokens + } +} diff --git a/ProxyCore/Sources/Shared/Constants.swift b/ProxyCore/Sources/Shared/Constants.swift new file mode 100644 index 0000000..b244c89 --- /dev/null +++ b/ProxyCore/Sources/Shared/Constants.swift @@ -0,0 +1,18 @@ +import Foundation + +public enum ProxyConstants { + public static let proxyHost = "127.0.0.1" + public static let proxyPort: Int = 9090 + public static let appGroupIdentifier = "group.com.treyt.proxyapp" + public static let extensionBundleIdentifier = "com.treyt.proxyapp.PacketTunnel" + public static let maxBodySizeBytes = 1_048_576 // 1 MB - truncate larger bodies + public static let certificateCacheSize = 500 + + public static let httpMethods = ["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"] + + public static let commonHeaders = [ + "Accept", "Accept-Charset", "Accept-Encoding", "Accept-Language", + "Authorization", "Cache-Control", "Connection", "Content-Length", + "Content-Type", "Cookie", "Host", "Origin", "Referer", "User-Agent" + ] +} diff --git a/ProxyCore/Sources/Shared/IPCManager.swift b/ProxyCore/Sources/Shared/IPCManager.swift new file mode 100644 index 0000000..f806bdc --- /dev/null +++ b/ProxyCore/Sources/Shared/IPCManager.swift @@ -0,0 +1,103 @@ +import Foundation + +/// Lightweight IPC between the main app and the packet tunnel extension +/// using Darwin notifications (fire-and-forget signals) and shared UserDefaults. +public final class IPCManager: Sendable { + public static let shared = IPCManager() + + private let suiteName = "group.com.treyt.proxyapp" + + public enum Notification: String, Sendable { + case newTrafficCaptured = "com.treyt.proxyapp.newTraffic" + case configurationChanged = "com.treyt.proxyapp.configChanged" + case extensionStarted = "com.treyt.proxyapp.extensionStarted" + case extensionStopped = "com.treyt.proxyapp.extensionStopped" + } + + private init() {} + + // MARK: - Darwin Notifications + + public func post(_ notification: Notification) { + let name = CFNotificationName(notification.rawValue as CFString) + CFNotificationCenterPostNotification( + CFNotificationCenterGetDarwinNotifyCenter(), + name, nil, nil, true + ) + } + + public func observe(_ notification: Notification, callback: @escaping @Sendable () -> Void) { + let name = notification.rawValue as CFString + let center = CFNotificationCenterGetDarwinNotifyCenter() + + // Store callback in a static dictionary keyed by notification name + DarwinCallbackStore.shared.register(name: notification.rawValue, callback: callback) + + CFNotificationCenterAddObserver( + center, nil, + { _, _, name, _, _ in + guard let cfName = name?.rawValue as? String else { return } + DarwinCallbackStore.shared.fire(name: cfName) + }, + name, nil, + .deliverImmediately + ) + } + + // MARK: - Shared UserDefaults + + public var sharedDefaults: UserDefaults? { + UserDefaults(suiteName: suiteName) + } + + public var isSSLProxyingEnabled: Bool { + get { sharedDefaults?.bool(forKey: "sslProxyingEnabled") ?? false } + set { sharedDefaults?.set(newValue, forKey: "sslProxyingEnabled") } + } + + public var isBlockListEnabled: Bool { + get { sharedDefaults?.bool(forKey: "blockListEnabled") ?? false } + set { sharedDefaults?.set(newValue, forKey: "blockListEnabled") } + } + + public var isBreakpointEnabled: Bool { + get { sharedDefaults?.bool(forKey: "breakpointEnabled") ?? false } + set { sharedDefaults?.set(newValue, forKey: "breakpointEnabled") } + } + + public var isNoCachingEnabled: Bool { + get { sharedDefaults?.bool(forKey: "noCachingEnabled") ?? false } + set { sharedDefaults?.set(newValue, forKey: "noCachingEnabled") } + } + + public var isDNSSpoofingEnabled: Bool { + get { sharedDefaults?.bool(forKey: "dnsSpoofingEnabled") ?? false } + set { sharedDefaults?.set(newValue, forKey: "dnsSpoofingEnabled") } + } + + public var hideSystemTraffic: Bool { + get { sharedDefaults?.bool(forKey: "hideSystemTraffic") ?? false } + set { sharedDefaults?.set(newValue, forKey: "hideSystemTraffic") } + } +} + +// MARK: - Darwin Callback Storage + +private final class DarwinCallbackStore: @unchecked Sendable { + static let shared = DarwinCallbackStore() + private var callbacks: [String: @Sendable () -> Void] = [:] + private let lock = NSLock() + + func register(name: String, callback: @escaping @Sendable () -> Void) { + lock.lock() + callbacks[name] = callback + lock.unlock() + } + + func fire(name: String) { + lock.lock() + let cb = callbacks[name] + lock.unlock() + cb?() + } +} diff --git a/ProxyCore/Sources/Shared/WildcardMatcher.swift b/ProxyCore/Sources/Shared/WildcardMatcher.swift new file mode 100644 index 0000000..76ba2bd --- /dev/null +++ b/ProxyCore/Sources/Shared/WildcardMatcher.swift @@ -0,0 +1,40 @@ +import Foundation + +public enum WildcardMatcher { + /// Matches a string against a glob pattern with `*` (zero or more chars) and `?` (single char). + public static func matches(_ string: String, pattern: String) -> Bool { + let s = Array(string.lowercased()) + let p = Array(pattern.lowercased()) + return matchHelper(s, 0, p, 0) + } + + private static func matchHelper(_ s: [Character], _ si: Int, _ p: [Character], _ pi: Int) -> Bool { + var si = si + var pi = pi + var starIdx = -1 + var matchIdx = 0 + + while si < s.count { + if pi < p.count && (p[pi] == "?" || p[pi] == s[si]) { + si += 1 + pi += 1 + } else if pi < p.count && p[pi] == "*" { + starIdx = pi + matchIdx = si + pi += 1 + } else if starIdx != -1 { + pi = starIdx + 1 + matchIdx += 1 + si = matchIdx + } else { + return false + } + } + + while pi < p.count && p[pi] == "*" { + pi += 1 + } + + return pi == p.count + } +} diff --git a/Resources/Assets.xcassets/Contents.json b/Resources/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Resources/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/UI/Compose/CURLImportView.swift b/UI/Compose/CURLImportView.swift new file mode 100644 index 0000000..bf5f589 --- /dev/null +++ b/UI/Compose/CURLImportView.swift @@ -0,0 +1,55 @@ +import SwiftUI +import ProxyCore + +struct CURLImportView: View { + let onImport: (ParsedCURLRequest) -> Void + + @State private var curlText = "" + @State private var errorMessage: String? + @Environment(\.dismiss) private var dismiss + + var body: some View { + NavigationStack { + VStack(alignment: .leading, spacing: 16) { + Text("Paste a cURL command to import as a request.") + .font(.subheadline) + .foregroundStyle(.secondary) + + TextEditor(text: $curlText) + .font(.system(.caption, design: .monospaced)) + .frame(minHeight: 200) + .overlay( + RoundedRectangle(cornerRadius: 8) + .stroke(Color(.systemGray4)) + ) + + if let errorMessage { + Text(errorMessage) + .font(.caption) + .foregroundStyle(.red) + } + + Button("Import") { + if let parsed = CURLParser.parse(curlText) { + onImport(parsed) + } else { + errorMessage = "Invalid cURL command. Make sure it starts with 'curl'." + } + } + .frame(maxWidth: .infinity) + .buttonStyle(.borderedProminent) + .disabled(curlText.isEmpty) + + Spacer() + } + .padding() + .navigationTitle("Import cURL") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .cancellationAction) { + Button("Cancel") { dismiss() } + } + } + } + } +} diff --git a/UI/Compose/ComposeEditorView.swift b/UI/Compose/ComposeEditorView.swift new file mode 100644 index 0000000..f4bd65d --- /dev/null +++ b/UI/Compose/ComposeEditorView.swift @@ -0,0 +1,180 @@ +import SwiftUI +import ProxyCore + +struct ComposeEditorView: View { + let requestId: Int64 + + @State private var method = "GET" + @State private var url = "" + @State private var headersText = "" + @State private var queryText = "" + @State private var bodyText = "" + @State private var selectedTab: EditorTab = .headers + @State private var isSending = false + @State private var responseStatus: Int? + @State private var responseBody: String? + + private let composeRepo = ComposeRepository() + + enum EditorTab: String, CaseIterable { + case headers = "Headers" + case query = "Query" + case body = "Body" + } + + var body: some View { + VStack(spacing: 0) { + // Method + URL + HStack(spacing: 12) { + Menu { + ForEach(ProxyConstants.httpMethods, id: \.self) { m in + Button(m) { method = m } + } + } label: { + HStack(spacing: 4) { + Text(method) + .font(.subheadline.weight(.semibold)) + .foregroundStyle(.green) + Image(systemName: "chevron.down") + .font(.caption2) + .foregroundStyle(.secondary) + } + .padding(.horizontal, 10) + .padding(.vertical, 6) + .background(Color(.systemGray6), in: RoundedRectangle(cornerRadius: 8)) + } + + TextField("Tap to edit URL", text: $url) + .textFieldStyle(.roundedBorder) + .font(.subheadline) + .textInputAutocapitalization(.never) + .autocorrectionDisabled() + } + .padding() + + // Tabs + Picker("Tab", selection: $selectedTab) { + ForEach(EditorTab.allCases, id: \.self) { tab in + Text(tab.rawValue).tag(tab) + } + } + .pickerStyle(.segmented) + .padding(.horizontal) + + // Tab Content + ScrollView { + VStack(alignment: .leading, spacing: 12) { + switch selectedTab { + case .headers: + headerEditor + case .query: + queryEditor + case .body: + bodyEditor + } + } + .padding() + } + + // Response + if let responseBody { + Divider() + ScrollView { + Text(responseBody) + .font(.system(.caption, design: .monospaced)) + .textSelection(.enabled) + .frame(maxWidth: .infinity, alignment: .leading) + .padding() + } + .frame(maxHeight: 200) + .background(Color(.systemGray6)) + } + } + .navigationTitle("New Request") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .topBarTrailing) { + Button { + Task { await sendRequest() } + } label: { + Text("Send") + .font(.headline) + } + .buttonStyle(.borderedProminent) + .disabled(url.isEmpty || isSending) + } + } + } + + private var headerEditor: some View { + VStack(alignment: .leading, spacing: 8) { + if headersText.isEmpty { + EmptyStateView( + icon: "list.bullet.rectangle", + title: "No Headers", + subtitle: "Tap 'Edit Headers' to add headers." + ) + } + + Button("Edit Headers") { + // TODO: Open header editor sheet + } + .frame(maxWidth: .infinity) + .buttonStyle(.borderedProminent) + } + } + + private var queryEditor: some View { + VStack(alignment: .leading, spacing: 8) { + TextEditor(text: $queryText) + .font(.system(.caption, design: .monospaced)) + .frame(minHeight: 100) + .overlay( + RoundedRectangle(cornerRadius: 8) + .stroke(Color(.systemGray4)) + ) + Text("Format: key=value, one per line") + .font(.caption2) + .foregroundStyle(.secondary) + } + } + + private var bodyEditor: some View { + VStack(alignment: .leading, spacing: 8) { + TextEditor(text: $bodyText) + .font(.system(.caption, design: .monospaced)) + .frame(minHeight: 200) + .overlay( + RoundedRectangle(cornerRadius: 8) + .stroke(Color(.systemGray4)) + ) + } + } + + private func sendRequest() async { + guard let requestURL = URL(string: url) else { return } + + isSending = true + defer { isSending = false } + + var request = URLRequest(url: requestURL) + request.httpMethod = method + if !bodyText.isEmpty { + request.httpBody = bodyText.data(using: .utf8) + } + + do { + let (data, response) = try await URLSession.shared.data(for: request) + if let httpResponse = response as? HTTPURLResponse { + responseStatus = httpResponse.statusCode + } + if let string = String(data: data, encoding: .utf8) { + responseBody = string + } else { + responseBody = "\(data.count) bytes (binary)" + } + } catch { + responseBody = "Error: \(error.localizedDescription)" + } + } +} diff --git a/UI/Compose/ComposeListView.swift b/UI/Compose/ComposeListView.swift new file mode 100644 index 0000000..ed8c084 --- /dev/null +++ b/UI/Compose/ComposeListView.swift @@ -0,0 +1,133 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct ComposeListView: View { + @State private var requests: [ComposeRequest] = [] + @State private var showClearConfirmation = false + @State private var showTemplatePicker = false + @State private var observation: AnyDatabaseCancellable? + + private let composeRepo = ComposeRepository() + + var body: some View { + Group { + if requests.isEmpty { + EmptyStateView( + icon: "square.and.pencil", + title: "No Requests", + subtitle: "Create a new request to get started.", + actionTitle: "New Request" + ) { + createEmptyRequest() + } + } else { + List { + ForEach(requests) { request in + NavigationLink(value: request.id) { + HStack { + MethodBadge(method: request.method) + VStack(alignment: .leading, spacing: 2) { + Text(request.name) + .font(.subheadline.weight(.medium)) + if let url = request.url, !url.isEmpty { + Text(url) + .font(.caption) + .foregroundStyle(.secondary) + .lineLimit(1) + } + } + } + } + } + .onDelete { indexSet in + for index in indexSet { + if let id = requests[index].id { + try? composeRepo.delete(id: id) + } + } + } + } + .navigationDestination(for: Int64?.self) { id in + if let id { + ComposeEditorView(requestId: id) + } + } + } + } + .navigationTitle("Compose") + .toolbar { + ToolbarItem(placement: .topBarLeading) { + Button { + showClearConfirmation = true + } label: { + Image(systemName: "trash") + } + .disabled(requests.isEmpty) + } + ToolbarItem(placement: .topBarTrailing) { + Menu { + Button("Empty Request") { createEmptyRequest() } + Button("GET with Query") { createTemplate(method: "GET", name: "GET with Query") } + Button("POST with JSON") { createTemplate(method: "POST", name: "POST with JSON", contentType: "application/json") } + Button("POST with Form") { createTemplate(method: "POST", name: "POST with Form", contentType: "application/x-www-form-urlencoded") } + Divider() + Button("Import from cURL") { showTemplatePicker = true } + } label: { + Image(systemName: "plus") + } + } + } + .confirmationDialog("Clear History", isPresented: $showClearConfirmation) { + Button("Clear All", role: .destructive) { + try? composeRepo.deleteAll() + } + } message: { + Text("This will permanently delete all compose requests.") + } + .sheet(isPresented: $showTemplatePicker) { + CURLImportView { parsed in + var request = ComposeRequest( + name: "Imported Request", + method: parsed.method, + url: parsed.url, + headers: encodeHeaders(parsed.headers), + body: parsed.body + ) + try? composeRepo.insert(&request) + showTemplatePicker = false + } + } + .task { + observation = composeRepo.observeRequests() + .start(in: DatabaseManager.shared.dbPool) { error in + print("Compose observation error: \(error)") + } onChange: { newRequests in + withAnimation { + requests = newRequests + } + } + } + } + + private func createEmptyRequest() { + var request = ComposeRequest() + try? composeRepo.insert(&request) + } + + private func createTemplate(method: String, name: String, contentType: String? = nil) { + var headers: String? + if let contentType { + headers = encodeHeaders([(key: "Content-Type", value: contentType)]) + } + var request = ComposeRequest(name: name, method: method, headers: headers) + try? composeRepo.insert(&request) + } + + private func encodeHeaders(_ headers: [(key: String, value: String)]) -> String? { + var dict: [String: String] = [:] + for h in headers { dict[h.key] = h.value } + guard let data = try? JSONEncoder().encode(dict) else { return nil } + return String(data: data, encoding: .utf8) + } +} diff --git a/UI/Home/DomainDetailView.swift b/UI/Home/DomainDetailView.swift new file mode 100644 index 0000000..a0bbb81 --- /dev/null +++ b/UI/Home/DomainDetailView.swift @@ -0,0 +1,82 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct DomainDetailView: View { + let domain: String + + @State private var requests: [CapturedTraffic] = [] + @State private var searchText = "" + @State private var filterChips: [FilterChip] = [ + FilterChip(label: "JSON"), + FilterChip(label: "Form"), + FilterChip(label: "HTTP"), + FilterChip(label: "HTTPS"), + ] + @State private var observation: AnyDatabaseCancellable? + + private let trafficRepo = TrafficRepository() + + var filteredRequests: [CapturedTraffic] { + var result = requests + + if !searchText.isEmpty { + result = result.filter { $0.url.localizedCaseInsensitiveContains(searchText) } + } + + let activeFilters = filterChips.filter(\.isSelected).map(\.label) + if !activeFilters.isEmpty { + result = result.filter { request in + for filter in activeFilters { + switch filter { + case "JSON": + if request.responseContentType?.contains("json") == true { return true } + case "Form": + if request.requestContentType?.contains("form") == true { return true } + case "HTTP": + if request.scheme == "http" { return true } + case "HTTPS": + if request.scheme == "https" { return true } + default: break + } + } + return false + } + } + + return result + } + + var body: some View { + VStack(spacing: 0) { + FilterChipsView(chips: $filterChips) + .padding(.vertical, 8) + + List { + ForEach(filteredRequests) { request in + NavigationLink(value: request.id) { + TrafficRowView(traffic: request) + } + } + } + } + .searchable(text: $searchText) + .navigationTitle(domain) + .navigationBarTitleDisplayMode(.inline) + .navigationDestination(for: Int64?.self) { id in + if let id { + RequestDetailView(trafficId: id) + } + } + .task { + observation = trafficRepo.observeTraffic(forDomain: domain) + .start(in: DatabaseManager.shared.dbPool) { error in + print("Observation error: \(error)") + } onChange: { newRequests in + withAnimation { + requests = newRequests + } + } + } + } +} diff --git a/UI/Home/HomeView.swift b/UI/Home/HomeView.swift new file mode 100644 index 0000000..4a640ff --- /dev/null +++ b/UI/Home/HomeView.swift @@ -0,0 +1,104 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct HomeView: View { + @Environment(AppState.self) private var appState + @State private var domains: [DomainGroup] = [] + @State private var searchText = "" + @State private var showClearConfirmation = false + @State private var observation: AnyDatabaseCancellable? + + private let trafficRepo = TrafficRepository() + + var filteredDomains: [DomainGroup] { + if searchText.isEmpty { return domains } + return domains.filter { $0.domain.localizedCaseInsensitiveContains(searchText) } + } + + var body: some View { + Group { + if !appState.isVPNConnected && domains.isEmpty { + ContentUnavailableView { + Label("VPN Not Connected", systemImage: "bolt.slash") + } description: { + Text("Enable the VPN to start capturing network traffic.") + } actions: { + Button("Enable VPN") { + Task { await appState.toggleVPN() } + } + .buttonStyle(.borderedProminent) + } + } else if domains.isEmpty { + ContentUnavailableView { + Label("No Traffic", systemImage: "network.slash") + } description: { + Text("Waiting for network requests. Open Safari or another app to generate traffic.") + } + } else { + List { + ForEach(filteredDomains) { group in + NavigationLink(value: group) { + HStack { + Image(systemName: "globe") + .foregroundStyle(.secondary) + Text(group.domain) + .lineLimit(1) + Spacer() + Text("\(group.requestCount)") + .foregroundStyle(.secondary) + Image(systemName: "chevron.right") + .font(.caption) + .foregroundStyle(.tertiary) + } + } + } + } + } + } + .searchable(text: $searchText, prompt: "Filter Domains") + .navigationTitle("Home") + .navigationDestination(for: DomainGroup.self) { group in + DomainDetailView(domain: group.domain) + } + .toolbar { + ToolbarItem(placement: .topBarLeading) { + Button { + showClearConfirmation = true + } label: { + Image(systemName: "trash") + } + .disabled(domains.isEmpty) + } + ToolbarItem(placement: .topBarTrailing) { + Button { + Task { await appState.toggleVPN() } + } label: { + Image(systemName: appState.isVPNConnected ? "bolt.fill" : "bolt.slash") + .foregroundStyle(appState.isVPNConnected ? .yellow : .secondary) + } + } + } + .confirmationDialog("Clear All Domains", isPresented: $showClearConfirmation) { + Button("Clear All", role: .destructive) { + try? trafficRepo.deleteAll() + } + } message: { + Text("This will permanently delete all captured traffic.") + } + .task { + startObservation() + } + } + + private func startObservation() { + observation = trafficRepo.observeDomainGroups() + .start(in: DatabaseManager.shared.dbPool) { error in + print("[HomeView] Observation error: \(error)") + } onChange: { newDomains in + withAnimation { + domains = newDomains + } + } + } +} diff --git a/UI/Home/RequestDetailView.swift b/UI/Home/RequestDetailView.swift new file mode 100644 index 0000000..0de18fe --- /dev/null +++ b/UI/Home/RequestDetailView.swift @@ -0,0 +1,193 @@ +import SwiftUI +import ProxyCore + +struct RequestDetailView: View { + let trafficId: Int64 + + @State private var traffic: CapturedTraffic? + @State private var selectedSegment: Segment = .request + + private let trafficRepo = TrafficRepository() + + enum Segment: String, CaseIterable { + case request = "Request" + case response = "Response" + } + + var body: some View { + Group { + if let traffic { + VStack(spacing: 0) { + Picker("Segment", selection: $selectedSegment) { + ForEach(Segment.allCases, id: \.self) { segment in + Text(segment.rawValue).tag(segment) + } + } + .pickerStyle(.segmented) + .padding() + + ScrollView { + VStack(alignment: .leading, spacing: 16) { + switch selectedSegment { + case .request: + requestContent(traffic) + case .response: + responseContent(traffic) + } + } + .padding() + } + } + } else { + ProgressView() + } + } + .navigationTitle(traffic?.domain ?? "Request") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + if let traffic { + ToolbarItem(placement: .topBarTrailing) { + Button { + try? trafficRepo.togglePin(id: trafficId, isPinned: !traffic.isPinned) + self.traffic?.isPinned.toggle() + } label: { + Image(systemName: traffic.isPinned ? "pin.fill" : "pin") + } + } + } + } + .task { + traffic = try? trafficRepo.traffic(byId: trafficId) + } + } + + // MARK: - Request Content + + @ViewBuilder + private func requestContent(_ traffic: CapturedTraffic) -> some View { + // General + DisclosureGroup("General") { + VStack(alignment: .leading, spacing: 12) { + KeyValueRow(key: "URL", value: traffic.url) + KeyValueRow(key: "Method", value: traffic.method) + KeyValueRow(key: "Scheme", value: traffic.scheme) + KeyValueRow(key: "Time", value: traffic.startDate.formatted(.dateTime)) + if let duration = traffic.durationMs { + KeyValueRow(key: "Duration", value: "\(duration) ms") + } + if let status = traffic.statusCode { + KeyValueRow(key: "Status", value: "\(status) \(traffic.statusText ?? "")") + } + } + .padding(.vertical, 8) + } + + // Headers + let requestHeaders = traffic.decodedRequestHeaders + if !requestHeaders.isEmpty { + DisclosureGroup("Headers (\(requestHeaders.count))") { + VStack(alignment: .leading, spacing: 12) { + ForEach(requestHeaders.sorted(by: { $0.key < $1.key }), id: \.key) { key, value in + KeyValueRow(key: key, value: value) + } + } + .padding(.vertical, 8) + } + } + + // Query Parameters + let queryParams = traffic.decodedQueryParameters + if !queryParams.isEmpty { + DisclosureGroup("Query (\(queryParams.count))") { + VStack(alignment: .leading, spacing: 12) { + ForEach(queryParams.sorted(by: { $0.key < $1.key }), id: \.key) { key, value in + KeyValueRow(key: key, value: value) + } + } + .padding(.vertical, 8) + } + } + + // Body + if let body = traffic.requestBody, !body.isEmpty { + DisclosureGroup("Body (\(formatBytes(body.count)))") { + bodyView(data: body, contentType: traffic.requestContentType) + .padding(.vertical, 8) + } + } + } + + // MARK: - Response Content + + @ViewBuilder + private func responseContent(_ traffic: CapturedTraffic) -> some View { + if let status = traffic.statusCode { + // Status + HStack { + StatusBadge(statusCode: status) + Text(traffic.statusText ?? "") + .font(.subheadline) + } + .padding(.vertical, 4) + } + + // Headers + let responseHeaders = traffic.decodedResponseHeaders + if !responseHeaders.isEmpty { + DisclosureGroup("Headers (\(responseHeaders.count))") { + VStack(alignment: .leading, spacing: 12) { + ForEach(responseHeaders.sorted(by: { $0.key < $1.key }), id: \.key) { key, value in + KeyValueRow(key: key, value: value) + } + } + .padding(.vertical, 8) + } + } + + // Body + if let body = traffic.responseBody, !body.isEmpty { + DisclosureGroup("Body (\(formatBytes(body.count)))") { + bodyView(data: body, contentType: traffic.responseContentType) + .padding(.vertical, 8) + } + } + + if traffic.statusCode == nil { + EmptyStateView( + icon: "clock", + title: "Waiting for Response", + subtitle: "The response has not been received yet." + ) + } + } + + // MARK: - Body View + + @ViewBuilder + private func bodyView(data: Data, contentType: String?) -> some View { + if let contentType, contentType.contains("json"), + let json = try? JSONSerialization.jsonObject(with: data), + let pretty = try? JSONSerialization.data(withJSONObject: json, options: .prettyPrinted), + let string = String(data: pretty, encoding: .utf8) { + ScrollView(.horizontal) { + Text(string) + .font(.system(.caption, design: .monospaced)) + .textSelection(.enabled) + } + } else if let string = String(data: data, encoding: .utf8) { + Text(string) + .font(.system(.caption, design: .monospaced)) + .textSelection(.enabled) + } else { + Text("\(data.count) bytes (binary)") + .font(.caption) + .foregroundStyle(.secondary) + } + } + + private func formatBytes(_ bytes: Int) -> String { + if bytes < 1024 { return "\(bytes) B" } + if bytes < 1_048_576 { return String(format: "%.1f KB", Double(bytes) / 1024) } + return String(format: "%.1f MB", Double(bytes) / 1_048_576) + } +} diff --git a/UI/Home/TrafficRowView.swift b/UI/Home/TrafficRowView.swift new file mode 100644 index 0000000..69528e2 --- /dev/null +++ b/UI/Home/TrafficRowView.swift @@ -0,0 +1,50 @@ +import SwiftUI +import ProxyCore + +struct TrafficRowView: View { + let traffic: CapturedTraffic + + var body: some View { + VStack(alignment: .leading, spacing: 6) { + HStack(spacing: 6) { + MethodBadge(method: traffic.method) + StatusBadge(statusCode: traffic.statusCode) + + Spacer() + + Text(traffic.startDate, format: .dateTime.hour().minute().second().secondFraction(.fractional(3))) + .font(.caption2) + .foregroundStyle(.secondary) + + Text(traffic.formattedDuration) + .font(.caption2) + .foregroundStyle(.secondary) + } + + Text(traffic.url) + .font(.caption) + .lineLimit(3) + .foregroundStyle(.primary) + + HStack(spacing: 12) { + if traffic.requestBodySize > 0 { + Label(formatBytes(traffic.requestBodySize), systemImage: "arrow.up.circle.fill") + .font(.caption2) + .foregroundStyle(.green) + } + if traffic.responseBodySize > 0 { + Label(formatBytes(traffic.responseBodySize), systemImage: "arrow.down.circle.fill") + .font(.caption2) + .foregroundStyle(.blue) + } + } + } + .padding(.vertical, 4) + } + + private func formatBytes(_ bytes: Int) -> String { + if bytes < 1024 { return "\(bytes) B" } + if bytes < 1_048_576 { return String(format: "%.1f KB", Double(bytes) / 1024) } + return String(format: "%.1f MB", Double(bytes) / 1_048_576) + } +} diff --git a/UI/More/AdvancedSettingsView.swift b/UI/More/AdvancedSettingsView.swift new file mode 100644 index 0000000..6cc07da --- /dev/null +++ b/UI/More/AdvancedSettingsView.swift @@ -0,0 +1,27 @@ +import SwiftUI +import ProxyCore + +struct AdvancedSettingsView: View { + @State private var hideSystemTraffic = IPCManager.shared.hideSystemTraffic + @State private var showImagePreview = true + + var body: some View { + Form { + Section { + Toggle("Hide iOS System Traffic", isOn: $hideSystemTraffic) + .onChange(of: hideSystemTraffic) { _, newValue in + IPCManager.shared.hideSystemTraffic = newValue + } + } footer: { + Text("Hide traffic from Apple system services like push notifications, iCloud sync, and analytics.") + } + + Section { + Toggle("Show Image Preview", isOn: $showImagePreview) + } footer: { + Text("Display thumbnail previews for image responses in the traffic list.") + } + } + .navigationTitle("Advanced") + } +} diff --git a/UI/More/AppSettingsView.swift b/UI/More/AppSettingsView.swift new file mode 100644 index 0000000..e455e4b --- /dev/null +++ b/UI/More/AppSettingsView.swift @@ -0,0 +1,39 @@ +import SwiftUI + +struct AppSettingsView: View { + @State private var analyticsEnabled = false + @State private var crashReportingEnabled = true + @State private var showClearCacheConfirmation = false + + var body: some View { + Form { + Section { + Toggle("Analytics", isOn: $analyticsEnabled) + Toggle("Crash Reporting", isOn: $crashReportingEnabled) + } footer: { + Text("Help improve the app by sharing anonymous usage data.") + } + + Section { + Button("Clear App Cache", role: .destructive) { + showClearCacheConfirmation = true + } + } footer: { + Text("Remove all cached data. This does not delete captured traffic.") + } + + Section("About") { + LabeledContent("Version", value: "1.0.0") + LabeledContent("Build", value: "1") + } + } + .navigationTitle("App Settings") + .confirmationDialog("Clear Cache", isPresented: $showClearCacheConfirmation) { + Button("Clear Cache", role: .destructive) { + // TODO: Clear URL cache, image cache, etc. + } + } message: { + Text("This will clear all cached data.") + } + } +} diff --git a/UI/More/BlockListView.swift b/UI/More/BlockListView.swift new file mode 100644 index 0000000..d6c10e7 --- /dev/null +++ b/UI/More/BlockListView.swift @@ -0,0 +1,144 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct BlockListView: View { + @State private var isEnabled = IPCManager.shared.isBlockListEnabled + @State private var entries: [BlockListEntry] = [] + @State private var showAddRule = false + @State private var observation: AnyDatabaseCancellable? + + private let rulesRepo = RulesRepository() + + var body: some View { + List { + Section { + ToggleHeaderView( + title: "Block List", + description: "Block requests matching these rules. Blocked requests will be dropped or hidden based on the action.", + isEnabled: $isEnabled + ) + .onChange(of: isEnabled) { _, newValue in + IPCManager.shared.isBlockListEnabled = newValue + IPCManager.shared.post(.configurationChanged) + } + } + .listRowInsets(EdgeInsets()) + + Section("Rules") { + if entries.isEmpty { + Text("No block rules") + .foregroundStyle(.secondary) + .font(.subheadline) + } else { + ForEach(entries) { entry in + VStack(alignment: .leading, spacing: 4) { + Text(entry.name ?? entry.urlPattern) + .font(.subheadline.weight(.medium)) + Text(entry.urlPattern) + .font(.caption) + .foregroundStyle(.secondary) + Text(entry.action.displayName) + .font(.caption2) + .foregroundStyle(.tertiary) + } + } + .onDelete { indexSet in + for index in indexSet { + if let id = entries[index].id { + try? rulesRepo.deleteBlockEntry(id: id) + } + } + } + } + } + } + .navigationTitle("Block List") + .toolbar { + ToolbarItem(placement: .topBarTrailing) { + Button { showAddRule = true } label: { + Image(systemName: "plus") + } + } + } + .sheet(isPresented: $showAddRule) { + NewBlockRuleView { entry in + var entry = entry + try? rulesRepo.insertBlockEntry(&entry) + } + } + .task { + observation = rulesRepo.observeBlockListEntries() + .start(in: DatabaseManager.shared.dbPool) { error in + print("Block list observation error: \(error)") + } onChange: { newEntries in + entries = newEntries + } + } + } +} + +// MARK: - New Block Rule + +struct NewBlockRuleView: View { + let onSave: (BlockListEntry) -> Void + + @State private var name = "" + @State private var urlPattern = "" + @State private var method = "ANY" + @State private var includeSubpaths = true + @State private var blockAction: BlockAction = .blockAndHide + @Environment(\.dismiss) private var dismiss + + var body: some View { + NavigationStack { + Form { + Section { + TextField("Name (optional)", text: $name) + TextField("URL Pattern", text: $urlPattern) + .textInputAutocapitalization(.never) + .autocorrectionDisabled() + } + + Section { + Picker("Method", selection: $method) { + Text("ANY").tag("ANY") + ForEach(ProxyConstants.httpMethods, id: \.self) { m in + Text(m).tag(m) + } + } + Toggle("Include Subpaths", isOn: $includeSubpaths) + } + + Section { + Picker("Block Action", selection: $blockAction) { + ForEach(BlockAction.allCases, id: \.self) { action in + Text(action.displayName).tag(action) + } + } + } + } + .navigationTitle("New Block Rule") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .cancellationAction) { + Button("Cancel") { dismiss() } + } + ToolbarItem(placement: .confirmationAction) { + Button("Save") { + let entry = BlockListEntry( + name: name.isEmpty ? nil : name, + urlPattern: urlPattern, + method: method, + includeSubpaths: includeSubpaths, + blockAction: blockAction + ) + onSave(entry) + dismiss() + } + .disabled(urlPattern.isEmpty) + } + } + } + } +} diff --git a/UI/More/BreakpointRulesView.swift b/UI/More/BreakpointRulesView.swift new file mode 100644 index 0000000..9a5035e --- /dev/null +++ b/UI/More/BreakpointRulesView.swift @@ -0,0 +1,99 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct BreakpointRulesView: View { + @State private var isEnabled = IPCManager.shared.isBreakpointEnabled + @State private var rules: [BreakpointRule] = [] + @State private var showAddRule = false + @State private var observation: AnyDatabaseCancellable? + + private let rulesRepo = RulesRepository() + + var body: some View { + List { + Section { + ToggleHeaderView( + title: "Breakpoint", + description: "Pause and modify HTTP requests and responses in real-time before they reach the server or the app.", + isEnabled: $isEnabled + ) + .onChange(of: isEnabled) { _, newValue in + IPCManager.shared.isBreakpointEnabled = newValue + IPCManager.shared.post(.configurationChanged) + } + } + .listRowInsets(EdgeInsets()) + + Section("Rules") { + if rules.isEmpty { + EmptyStateView( + icon: "pause.circle", + title: "No Breakpoint Rules", + subtitle: "Tap + to create a new breakpoint rule." + ) + } else { + ForEach(rules) { rule in + VStack(alignment: .leading, spacing: 4) { + Text(rule.name ?? rule.urlPattern) + .font(.subheadline.weight(.medium)) + Text(rule.urlPattern) + .font(.caption) + .foregroundStyle(.secondary) + HStack(spacing: 8) { + if rule.interceptRequest { + Text("Request") + .font(.caption2) + .foregroundStyle(.blue) + } + if rule.interceptResponse { + Text("Response") + .font(.caption2) + .foregroundStyle(.green) + } + } + } + } + .onDelete { indexSet in + for index in indexSet { + if let id = rules[index].id { + try? rulesRepo.deleteBreakpointRule(id: id) + } + } + } + } + } + } + .navigationTitle("Breakpoint") + .toolbar { + ToolbarItem(placement: .topBarTrailing) { + Button { showAddRule = true } label: { + Image(systemName: "plus") + } + } + } + .sheet(isPresented: $showAddRule) { + NavigationStack { + Form { + // TODO: Add breakpoint rule creation form + Text("Breakpoint rule creation") + } + .navigationTitle("New Breakpoint Rule") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .cancellationAction) { + Button("Cancel") { showAddRule = false } + } + } + } + } + .task { + observation = rulesRepo.observeBreakpointRules() + .start(in: DatabaseManager.shared.dbPool) { error in + print("Breakpoint observation error: \(error)") + } onChange: { newRules in + rules = newRules + } + } + } +} diff --git a/UI/More/CertificateView.swift b/UI/More/CertificateView.swift new file mode 100644 index 0000000..8547344 --- /dev/null +++ b/UI/More/CertificateView.swift @@ -0,0 +1,50 @@ +import SwiftUI +import ProxyCore + +struct CertificateView: View { + @Environment(AppState.self) private var appState + + var body: some View { + List { + Section { + HStack { + Image(systemName: appState.isCertificateTrusted ? "checkmark.shield.fill" : "exclamationmark.shield") + .font(.largeTitle) + .foregroundStyle(appState.isCertificateTrusted ? .green : .orange) + + VStack(alignment: .leading) { + Text(appState.isCertificateTrusted + ? "Certificate is installed & trusted!" + : "Certificate not installed") + .font(.headline) + Text("Required for HTTPS decryption") + .font(.caption) + .foregroundStyle(.secondary) + } + } + .padding(.vertical, 8) + } + + Section("Details") { + LabeledContent("CA Certificate", value: "Proxy CA (\(UIDevice.current.name))") + LabeledContent("Generated", value: "-") + LabeledContent("Expires", value: "-") + } + + Section { + Button("Install Certificate") { + // TODO: Phase 3 - Export and open cert installation + } + .frame(maxWidth: .infinity) + } + + Section { + Button("Regenerate Certificate", role: .destructive) { + // TODO: Phase 3 - Generate new CA + } + .frame(maxWidth: .infinity) + } + } + .navigationTitle("Certificate") + } +} diff --git a/UI/More/DNSSpoofingView.swift b/UI/More/DNSSpoofingView.swift new file mode 100644 index 0000000..d64d1c8 --- /dev/null +++ b/UI/More/DNSSpoofingView.swift @@ -0,0 +1,92 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct DNSSpoofingView: View { + @State private var isEnabled = IPCManager.shared.isDNSSpoofingEnabled + @State private var rules: [DNSSpoofRule] = [] + @State private var showAddRule = false + @State private var observation: AnyDatabaseCancellable? + + private let rulesRepo = RulesRepository() + + var body: some View { + List { + Section { + ToggleHeaderView( + title: "DNS Spoofing", + description: "Redirect domain resolution to a different target. Useful for routing production domains to development servers.", + isEnabled: $isEnabled + ) + .onChange(of: isEnabled) { _, newValue in + IPCManager.shared.isDNSSpoofingEnabled = newValue + IPCManager.shared.post(.configurationChanged) + } + } + .listRowInsets(EdgeInsets()) + + Section("Rules") { + if rules.isEmpty { + EmptyStateView( + icon: "network", + title: "No DNS Spoofing Rules", + subtitle: "Tap + to create a new rule." + ) + } else { + ForEach(rules) { rule in + VStack(alignment: .leading, spacing: 4) { + HStack { + Text(rule.sourceDomain) + .font(.subheadline) + Image(systemName: "arrow.right") + .font(.caption) + .foregroundStyle(.secondary) + Text(rule.targetDomain) + .font(.subheadline) + .foregroundStyle(.blue) + } + } + } + .onDelete { indexSet in + for index in indexSet { + if let id = rules[index].id { + try? rulesRepo.deleteDNSSpoofRule(id: id) + } + } + } + } + } + } + .navigationTitle("DNS Spoofing") + .toolbar { + ToolbarItem(placement: .topBarTrailing) { + Button { showAddRule = true } label: { + Image(systemName: "plus") + } + } + } + .sheet(isPresented: $showAddRule) { + NavigationStack { + Form { + // TODO: Add DNS spoof rule creation form + Text("DNS Spoofing rule creation") + } + .navigationTitle("New DNS Rule") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .cancellationAction) { + Button("Cancel") { showAddRule = false } + } + } + } + } + .task { + observation = rulesRepo.observeDNSSpoofRules() + .start(in: DatabaseManager.shared.dbPool) { error in + print("DNS Spoof observation error: \(error)") + } onChange: { newRules in + rules = newRules + } + } + } +} diff --git a/UI/More/MapLocalView.swift b/UI/More/MapLocalView.swift new file mode 100644 index 0000000..2454046 --- /dev/null +++ b/UI/More/MapLocalView.swift @@ -0,0 +1,88 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct MapLocalView: View { + @State private var rules: [MapLocalRule] = [] + @State private var showAddRule = false + @State private var observation: AnyDatabaseCancellable? + + private let rulesRepo = RulesRepository() + + var body: some View { + List { + Section { + VStack(alignment: .leading, spacing: 8) { + Text("Map Local") + .font(.headline) + Text("Intercept requests and replace the response with local content. Define custom mock responses for matched URLs.") + .font(.subheadline) + .foregroundStyle(.secondary) + } + .padding() + } + .listRowInsets(EdgeInsets()) + + Section("Rules") { + if rules.isEmpty { + EmptyStateView( + icon: "doc.on.doc", + title: "No Map Local Rules", + subtitle: "Tap + to create a new rule." + ) + } else { + ForEach(rules) { rule in + VStack(alignment: .leading, spacing: 4) { + Text(rule.name ?? rule.urlPattern) + .font(.subheadline.weight(.medium)) + Text(rule.urlPattern) + .font(.caption) + .foregroundStyle(.secondary) + Text("Status: \(rule.responseStatus)") + .font(.caption2) + .foregroundStyle(.tertiary) + } + } + .onDelete { indexSet in + for index in indexSet { + if let id = rules[index].id { + try? rulesRepo.deleteMapLocalRule(id: id) + } + } + } + } + } + } + .navigationTitle("Map Local") + .toolbar { + ToolbarItem(placement: .topBarTrailing) { + Button { showAddRule = true } label: { + Image(systemName: "plus") + } + } + } + .sheet(isPresented: $showAddRule) { + NavigationStack { + Form { + // TODO: Add map local rule creation form + Text("Map Local rule creation") + } + .navigationTitle("New Map Local Rule") + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .cancellationAction) { + Button("Cancel") { showAddRule = false } + } + } + } + } + .task { + observation = rulesRepo.observeMapLocalRules() + .start(in: DatabaseManager.shared.dbPool) { error in + print("Map Local observation error: \(error)") + } onChange: { newRules in + rules = newRules + } + } + } +} diff --git a/UI/More/MoreView.swift b/UI/More/MoreView.swift new file mode 100644 index 0000000..174345e --- /dev/null +++ b/UI/More/MoreView.swift @@ -0,0 +1,87 @@ +import SwiftUI +import ProxyCore + +struct MoreView: View { + @Environment(AppState.self) private var appState + + var body: some View { + List { + Section { + NavigationLink { + SetupGuideView() + } label: { + Label { + VStack(alignment: .leading) { + Text("Setup Guide") + Text(appState.isVPNConnected ? "Ready to Intercept" : "Setup Required") + .font(.caption) + .foregroundStyle(appState.isVPNConnected ? .green : .orange) + } + } icon: { + Image(systemName: "checkmark.shield.fill") + .foregroundStyle(appState.isVPNConnected ? .green : .orange) + } + } + + NavigationLink { + CertificateView() + } label: { + Label("Certificate", systemImage: "lock.shield") + } + } + + Section("Rules") { + NavigationLink { + SSLProxyingListView() + } label: { + Label("SSL Proxying List", systemImage: "lock.fill") + } + + NavigationLink { + BlockListView() + } label: { + Label("Block List", systemImage: "xmark.shield") + } + + NavigationLink { + BreakpointRulesView() + } label: { + Label("Breakpoint", systemImage: "pause.circle") + } + + NavigationLink { + MapLocalView() + } label: { + Label("Map Local", systemImage: "doc.on.doc") + } + + NavigationLink { + NoCachingView() + } label: { + Label("No Caching", systemImage: "arrow.clockwise.circle") + } + + NavigationLink { + DNSSpoofingView() + } label: { + Label("DNS Spoofing", systemImage: "network") + } + } + + Section("Settings") { + NavigationLink { + AdvancedSettingsView() + } label: { + Label("Advanced", systemImage: "gearshape.2") + } + + NavigationLink { + AppSettingsView() + } label: { + Label("App Settings", systemImage: "gearshape") + } + } + } + .navigationTitle("More") + } +} diff --git a/UI/More/NoCachingView.swift b/UI/More/NoCachingView.swift new file mode 100644 index 0000000..1f2782f --- /dev/null +++ b/UI/More/NoCachingView.swift @@ -0,0 +1,42 @@ +import SwiftUI +import ProxyCore + +struct NoCachingView: View { + @State private var isEnabled = IPCManager.shared.isNoCachingEnabled + + var body: some View { + List { + Section { + ToggleHeaderView( + title: "No Caching", + description: "Bypass all caching layers to always see the latest server response. Strips cache headers from requests and responses.", + isEnabled: $isEnabled + ) + .onChange(of: isEnabled) { _, newValue in + IPCManager.shared.isNoCachingEnabled = newValue + IPCManager.shared.post(.configurationChanged) + } + } + .listRowInsets(EdgeInsets()) + + Section("How it works") { + VStack(alignment: .leading, spacing: 8) { + Text("Request modifications:") + .font(.caption.weight(.semibold)) + Text("Removes If-Modified-Since, If-None-Match\nAdds Pragma: no-cache, Cache-Control: no-cache") + .font(.caption) + .foregroundStyle(.secondary) + } + + VStack(alignment: .leading, spacing: 8) { + Text("Response modifications:") + .font(.caption.weight(.semibold)) + Text("Removes Expires, Last-Modified, ETag\nAdds Expires: 0, Cache-Control: no-cache") + .font(.caption) + .foregroundStyle(.secondary) + } + } + } + .navigationTitle("No Caching") + } +} diff --git a/UI/More/SSLProxyingListView.swift b/UI/More/SSLProxyingListView.swift new file mode 100644 index 0000000..bbaefef --- /dev/null +++ b/UI/More/SSLProxyingListView.swift @@ -0,0 +1,150 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct SSLProxyingListView: View { + @State private var isEnabled = IPCManager.shared.isSSLProxyingEnabled + @State private var entries: [SSLProxyingEntry] = [] + @State private var showAddInclude = false + @State private var showAddExclude = false + @State private var observation: AnyDatabaseCancellable? + + private let rulesRepo = RulesRepository() + + var includeEntries: [SSLProxyingEntry] { + entries.filter(\.isInclude) + } + + var excludeEntries: [SSLProxyingEntry] { + entries.filter { !$0.isInclude } + } + + var body: some View { + List { + Section { + ToggleHeaderView( + title: "SSL Proxying", + description: "Decrypt HTTPS traffic from included domains. Excluded domains are always passed through.", + isEnabled: $isEnabled + ) + .onChange(of: isEnabled) { _, newValue in + IPCManager.shared.isSSLProxyingEnabled = newValue + IPCManager.shared.post(.configurationChanged) + } + } + .listRowInsets(EdgeInsets()) + + Section("Include") { + if includeEntries.isEmpty { + Text("No include entries") + .foregroundStyle(.secondary) + .font(.subheadline) + } else { + ForEach(includeEntries) { entry in + Text(entry.domainPattern) + } + .onDelete { indexSet in + for index in indexSet { + if let id = includeEntries[index].id { + try? rulesRepo.deleteSSLEntry(id: id) + } + } + } + } + } + + Section("Exclude") { + if excludeEntries.isEmpty { + Text("No exclude entries") + .foregroundStyle(.secondary) + .font(.subheadline) + } else { + ForEach(excludeEntries) { entry in + Text(entry.domainPattern) + } + .onDelete { indexSet in + for index in indexSet { + if let id = excludeEntries[index].id { + try? rulesRepo.deleteSSLEntry(id: id) + } + } + } + } + } + } + .navigationTitle("SSL Proxying") + .toolbar { + ToolbarItem(placement: .topBarTrailing) { + Menu { + Button("Add Include Entry") { showAddInclude = true } + Button("Add Exclude Entry") { showAddExclude = true } + Divider() + Button("Clear All Rules", role: .destructive) { + try? rulesRepo.deleteAllSSLEntries() + } + } label: { + Image(systemName: "ellipsis.circle") + } + } + } + .sheet(isPresented: $showAddInclude) { + DomainEntrySheet(title: "New Include Entry", isInclude: true) { pattern in + var entry = SSLProxyingEntry(domainPattern: pattern, isInclude: true) + try? rulesRepo.insertSSLEntry(&entry) + } + } + .sheet(isPresented: $showAddExclude) { + DomainEntrySheet(title: "New Exclude Entry", isInclude: false) { pattern in + var entry = SSLProxyingEntry(domainPattern: pattern, isInclude: false) + try? rulesRepo.insertSSLEntry(&entry) + } + } + .task { + observation = rulesRepo.observeSSLEntries() + .start(in: DatabaseManager.shared.dbPool) { error in + print("SSL observation error: \(error)") + } onChange: { newEntries in + entries = newEntries + } + } + } +} + +// MARK: - Domain Entry Sheet + +struct DomainEntrySheet: View { + let title: String + let isInclude: Bool + let onSave: (String) -> Void + + @State private var domainPattern = "" + @Environment(\.dismiss) private var dismiss + + var body: some View { + NavigationStack { + Form { + Section { + TextField("Domain Pattern", text: $domainPattern) + .textInputAutocapitalization(.never) + .autocorrectionDisabled() + } footer: { + Text("Supports wildcards: * (zero or more) and ? (single character). Example: *.example.com") + } + } + .navigationTitle(title) + .navigationBarTitleDisplayMode(.inline) + .toolbar { + ToolbarItem(placement: .cancellationAction) { + Button("Cancel") { dismiss() } + } + ToolbarItem(placement: .confirmationAction) { + Button("Save") { + onSave(domainPattern) + dismiss() + } + .disabled(domainPattern.isEmpty) + } + } + } + } +} diff --git a/UI/More/SetupGuideView.swift b/UI/More/SetupGuideView.swift new file mode 100644 index 0000000..99c82e0 --- /dev/null +++ b/UI/More/SetupGuideView.swift @@ -0,0 +1,116 @@ +import SwiftUI +import ProxyCore + +struct SetupGuideView: View { + @Environment(AppState.self) private var appState + + var isReady: Bool { + appState.isVPNConnected && appState.isCertificateTrusted + } + + var body: some View { + VStack(spacing: 24) { + // Status Banner + HStack { + Image(systemName: isReady ? "checkmark.circle.fill" : "exclamationmark.triangle.fill") + .font(.title2) + VStack(alignment: .leading) { + Text(isReady ? "Ready to Intercept" : "Setup Required") + .font(.headline) + Text(isReady ? "All systems are configured correctly" : "Complete the steps below to start") + .font(.caption) + .foregroundStyle(.white.opacity(0.8)) + } + Spacer() + } + .foregroundStyle(.white) + .padding() + .background(isReady ? Color.green : Color.orange, in: RoundedRectangle(cornerRadius: 12)) + + Text("Follow these two steps to start capturing network traffic on your device.") + .font(.subheadline) + .foregroundStyle(.secondary) + + // Step 1: VPN + stepRow( + title: "VPN Extension Enabled", + subtitle: appState.isVPNConnected + ? "VPN is running and capturing traffic" + : "Tap to enable VPN", + isComplete: appState.isVPNConnected, + action: { + Task { await appState.toggleVPN() } + } + ) + + // Step 2: Certificate + stepRow( + title: "Certificate Installed & Trusted", + subtitle: appState.isCertificateTrusted + ? "HTTPS traffic can now be decrypted" + : "Install and trust the CA certificate", + isComplete: appState.isCertificateTrusted, + action: { + // TODO: Phase 3 - Open certificate installation flow + } + ) + + Divider() + + // Help section + VStack(alignment: .leading, spacing: 12) { + Text("Need Help?") + .font(.headline) + + HStack { + Image(systemName: "play.rectangle.fill") + .foregroundStyle(.red) + Text("Watch Video Tutorial") + Spacer() + Image(systemName: "arrow.up.forward") + .foregroundStyle(.secondary) + } + .padding(.vertical, 4) + + HStack { + Image(systemName: "book.fill") + .foregroundStyle(.blue) + Text("Read Documentation") + Spacer() + Image(systemName: "arrow.up.forward") + .foregroundStyle(.secondary) + } + .padding(.vertical, 4) + } + + Spacer() + } + .padding() + .navigationTitle("Setup Guide") + .navigationBarTitleDisplayMode(.inline) + } + + private func stepRow(title: String, subtitle: String, isComplete: Bool, action: @escaping () -> Void) -> some View { + Button(action: action) { + HStack(spacing: 12) { + Image(systemName: isComplete ? "checkmark.circle.fill" : "circle") + .font(.title2) + .foregroundStyle(isComplete ? .green : .secondary) + + VStack(alignment: .leading) { + Text(title) + .font(.subheadline.weight(.medium)) + .foregroundStyle(isComplete ? .green : .primary) + Text(subtitle) + .font(.caption) + .foregroundStyle(.secondary) + } + + Spacer() + } + .padding() + .background(Color(.secondarySystemGroupedBackground), in: RoundedRectangle(cornerRadius: 12)) + } + .buttonStyle(.plain) + } +} diff --git a/UI/Pin/PinView.swift b/UI/Pin/PinView.swift new file mode 100644 index 0000000..eb93b80 --- /dev/null +++ b/UI/Pin/PinView.swift @@ -0,0 +1,46 @@ +import SwiftUI +import ProxyCore +import GRDB + +struct PinView: View { + @State private var pinnedRequests: [CapturedTraffic] = [] + @State private var observation: AnyDatabaseCancellable? + + private let trafficRepo = TrafficRepository() + + var body: some View { + Group { + if pinnedRequests.isEmpty { + EmptyStateView( + icon: "pin.slash", + title: "No Pinned Requests", + subtitle: "Pin requests from the Home tab to save them here for quick access." + ) + } else { + List { + ForEach(pinnedRequests) { request in + NavigationLink(value: request.id) { + TrafficRowView(traffic: request) + } + } + } + .navigationDestination(for: Int64?.self) { id in + if let id { + RequestDetailView(trafficId: id) + } + } + } + } + .navigationTitle("Pin") + .task { + observation = trafficRepo.observePinnedTraffic() + .start(in: DatabaseManager.shared.dbPool) { error in + print("Pin observation error: \(error)") + } onChange: { pinned in + withAnimation { + pinnedRequests = pinned + } + } + } + } +} diff --git a/UI/SharedComponents/EmptyStateView.swift b/UI/SharedComponents/EmptyStateView.swift new file mode 100644 index 0000000..6add2e0 --- /dev/null +++ b/UI/SharedComponents/EmptyStateView.swift @@ -0,0 +1,37 @@ +import SwiftUI + +struct EmptyStateView: View { + let icon: String + let title: String + let subtitle: String + var actionTitle: String? + var action: (() -> Void)? + + var body: some View { + VStack(spacing: 16) { + Image(systemName: icon) + .font(.system(size: 48)) + .foregroundStyle(.secondary) + + Text(title) + .font(.headline) + .foregroundStyle(.secondary) + + Text(subtitle) + .font(.subheadline) + .foregroundStyle(.tertiary) + .multilineTextAlignment(.center) + + if let actionTitle, let action { + Button(action: action) { + Text(actionTitle) + .frame(maxWidth: .infinity) + } + .buttonStyle(.borderedProminent) + .padding(.horizontal, 40) + .padding(.top, 8) + } + } + .padding() + } +} diff --git a/UI/SharedComponents/FilterChipsView.swift b/UI/SharedComponents/FilterChipsView.swift new file mode 100644 index 0000000..99d9516 --- /dev/null +++ b/UI/SharedComponents/FilterChipsView.swift @@ -0,0 +1,34 @@ +import SwiftUI + +struct FilterChip: Identifiable { + let id = UUID() + let label: String + var isSelected: Bool = false +} + +struct FilterChipsView: View { + @Binding var chips: [FilterChip] + + var body: some View { + ScrollView(.horizontal, showsIndicators: false) { + HStack(spacing: 8) { + ForEach($chips) { $chip in + Button { + chip.isSelected.toggle() + } label: { + Text(chip.label) + .font(.caption.weight(.medium)) + .padding(.horizontal, 12) + .padding(.vertical, 6) + .background( + chip.isSelected ? Color.accentColor : Color(.systemGray5), + in: Capsule() + ) + .foregroundStyle(chip.isSelected ? .white : .primary) + } + } + } + .padding(.horizontal) + } + } +} diff --git a/UI/SharedComponents/KeyValueRow.swift b/UI/SharedComponents/KeyValueRow.swift new file mode 100644 index 0000000..b74d8ff --- /dev/null +++ b/UI/SharedComponents/KeyValueRow.swift @@ -0,0 +1,18 @@ +import SwiftUI + +struct KeyValueRow: View { + let key: String + let value: String + + var body: some View { + VStack(alignment: .leading, spacing: 2) { + Text(key) + .font(.caption) + .foregroundStyle(.secondary) + Text(value) + .font(.subheadline) + .textSelection(.enabled) + } + .frame(maxWidth: .infinity, alignment: .leading) + } +} diff --git a/UI/SharedComponents/MethodBadge.swift b/UI/SharedComponents/MethodBadge.swift new file mode 100644 index 0000000..af7c3c7 --- /dev/null +++ b/UI/SharedComponents/MethodBadge.swift @@ -0,0 +1,27 @@ +import SwiftUI + +struct MethodBadge: View { + let method: String + + var color: Color { + switch method.uppercased() { + case "GET": .green + case "POST": .blue + case "PUT": .orange + case "PATCH": .purple + case "DELETE": .red + case "HEAD": .gray + case "OPTIONS": .teal + default: .secondary + } + } + + var body: some View { + Text(method.uppercased()) + .font(.caption2.weight(.bold)) + .foregroundStyle(color) + .padding(.horizontal, 6) + .padding(.vertical, 2) + .background(color.opacity(0.12), in: RoundedRectangle(cornerRadius: 4)) + } +} diff --git a/UI/SharedComponents/StatusBadge.swift b/UI/SharedComponents/StatusBadge.swift new file mode 100644 index 0000000..d44d9b4 --- /dev/null +++ b/UI/SharedComponents/StatusBadge.swift @@ -0,0 +1,45 @@ +import SwiftUI + +struct StatusBadge: View { + let statusCode: Int? + + var color: Color { + guard let code = statusCode else { return .secondary } + switch code { + case 200..<300: return .green + case 300..<400: return .blue + case 400..<500: return .yellow + case 500..<600: return .red + default: return .secondary + } + } + + var text: String { + guard let code = statusCode else { return "..." } + switch code { + case 200: return "200 OK" + case 201: return "201 Created" + case 204: return "204 No Content" + case 301: return "301 Moved" + case 302: return "302 Found" + case 304: return "304 Not Modified" + case 400: return "400 Bad Request" + case 401: return "401 Unauthorized" + case 403: return "403 Forbidden" + case 404: return "404 Not Found" + case 500: return "500 Server Error" + case 502: return "502 Bad Gateway" + case 503: return "503 Unavailable" + default: return "\(code)" + } + } + + var body: some View { + Text(text) + .font(.caption2.weight(.medium)) + .foregroundStyle(color) + .padding(.horizontal, 6) + .padding(.vertical, 2) + .background(color.opacity(0.12), in: RoundedRectangle(cornerRadius: 4)) + } +} diff --git a/UI/SharedComponents/ToggleHeaderView.swift b/UI/SharedComponents/ToggleHeaderView.swift new file mode 100644 index 0000000..9b4eabd --- /dev/null +++ b/UI/SharedComponents/ToggleHeaderView.swift @@ -0,0 +1,20 @@ +import SwiftUI + +struct ToggleHeaderView: View { + let title: String + let description: String + @Binding var isEnabled: Bool + + var body: some View { + VStack(alignment: .leading, spacing: 8) { + Toggle(title, isOn: $isEnabled) + .font(.headline) + + Text(description) + .font(.subheadline) + .foregroundStyle(.secondary) + } + .padding() + .background(Color(.systemBackground)) + } +} diff --git a/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap b/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap new file mode 100644 index 0000000..328d98d --- /dev/null +++ b/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap @@ -0,0 +1,4 @@ +framework module ProxyCore { + header "ProxyCore-Swift.h" + requires objc +} diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml b/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml new file mode 100644 index 0000000..ee59dbc --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml @@ -0,0 +1 @@ +{"case-sensitive":"false","roots":[],"version":0} \ No newline at end of file diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c new file mode 100644 index 0000000..e13b5de --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c @@ -0,0 +1,5 @@ + extern const unsigned char ProxyCoreVersionString[]; + extern const double ProxyCoreVersionNumber; + + const unsigned char ProxyCoreVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:ProxyCore PROJECT:ProxyApp-1" "\n"; + const double ProxyCoreVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp new file mode 100644 index 0000000..3b893f5 --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp @@ -0,0 +1 @@ +-target arm64-apple-ios17.0 '-std=gnu11' -fmodules -gmodules '-fmodule-name=ProxyCore' -fpascal-strings -O0 -fno-common '-DDEBUG=1' -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -iquote /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap -ivfsoverlay /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml -iquote /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -I/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/include -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources-normal/arm64 -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/arm64 -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos '-fmodule-map-file=/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/Sources/GRDBSQLite/module.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIO.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/X509.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap' \ No newline at end of file diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json new file mode 100644 index 0000000..53c8fd5 --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json @@ -0,0 +1,229 @@ +{ + "" : { + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary-emit-module.dia", + "pch" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary.swiftdeps" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/CertificateManager.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/GlueHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/MITMHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ProxyServer.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/CURLParser.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/Constants.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/IPCManager.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/WildcardMatcher.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher~partial.swiftmodule" + } +} \ No newline at end of file diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList new file mode 100644 index 0000000..0547f37 --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList @@ -0,0 +1,58 @@ +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList new file mode 100644 index 0000000..55dc84b --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList @@ -0,0 +1,22 @@ +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList new file mode 100644 index 0000000..a922974 --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList @@ -0,0 +1,22 @@ +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/CURLParser.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/CertificateManager.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/Constants.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/GlueHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/IPCManager.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/MITMHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ProxyServer.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/WildcardMatcher.swift diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json new file mode 100644 index 0000000..b8e18a4 --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json @@ -0,0 +1 @@ +["AppIntent","EntityQuery","AppEntity","TransientEntity","AppEnum","AppShortcutProviding","AppShortcutsProvider","AnyResolverProviding","AppIntentsPackage","DynamicOptionsProvider","_IntentValueRepresentable","_AssistantIntentsProvider","_GenerativeFunctionExtractable","IntentValueQuery","Resolver","AppExtension","ExtensionPointDefining"] \ No newline at end of file diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap differ diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap differ diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap differ diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap differ diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap differ diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList new file mode 100644 index 0000000..756afc9 --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList @@ -0,0 +1,8 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList new file mode 100644 index 0000000..5e6d1ec --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList @@ -0,0 +1,35 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap differ diff --git a/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap new file mode 100644 index 0000000..328d98d --- /dev/null +++ b/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap @@ -0,0 +1,4 @@ +framework module ProxyCore { + header "ProxyCore-Swift.h" + requires objc +} diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/02d2697078e5ffde7d10bd29a1ba0c4b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/02d2697078e5ffde7d10bd29a1ba0c4b new file mode 100644 index 0000000..e8ffdbd --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/02d2697078e5ffde7d10bd29a1ba0c4b @@ -0,0 +1,3 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/02e60e7d248158f3a42509a03b54dcca b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/02e60e7d248158f3a42509a03b54dcca new file mode 100644 index 0000000..489490a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/02e60e7d248158f3a42509a03b54dcca @@ -0,0 +1,291 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPICommon.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIPosix.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIWindows.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocket.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+AccessibleTransport.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+SocketOptionProvider.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseStreamSocketChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Bootstrap.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ControlMessage.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/DatagramVectorReadManager.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Errors+Any.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/FileDescriptor.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/GetaddrinfoResolver.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/HappyEyeballs.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IO.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerBitPacking.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerTypes.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Linux.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxCPUSet.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxUring.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/MultiThreadedEventLoopGroup.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOPosixSendableMetatype.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOThreadPool.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NonBlockingFileIO.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingDatagramWritesManager.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingWritesManager.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipeChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipePair.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Pool.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons+ConcurrencyTakeOver.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/RawSocketBootstrap.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Resolver.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Selectable.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorEpoll.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorGeneric.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorKqueue.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorUring.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorWSAPoll.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ServerSocket.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Socket.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketProtocols.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/StructuredConcurrencyHelpers.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/System.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Thread.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadPosix.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadWindows.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Utilities.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockAddress.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockChannelEvents.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Windows.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/036f9576f20247110e918495b1ac7464 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/036f9576f20247110e918495b1ac7464 new file mode 100644 index 0000000..da22952 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/036f9576f20247110e918495b1ac7464 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOAtomics' -fpascal-strings -Os -DSWIFT_PACKAGE -D_GNU_SOURCE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/039ecce5cad1815fa963d2fff5e4a3ca b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/039ecce5cad1815fa963d2fff5e4a3ca new file mode 100644 index 0000000..d07ed90 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/039ecce5cad1815fa963d2fff5e4a3ca @@ -0,0 +1,46 @@ +import class Foundation.Bundle +import class Foundation.ProcessInfo +import struct Foundation.URL + +private class BundleFinder {} + +extension Foundation.Bundle { + /// Returns the resource bundle associated with the current Swift module. + static let module: Bundle = { + let bundleName = "swift-nio_NIOPosix" + + let overrides: [URL] + #if DEBUG + // The 'PACKAGE_RESOURCE_BUNDLE_PATH' name is preferred since the expected value is a path. The + // check for 'PACKAGE_RESOURCE_BUNDLE_URL' will be removed when all clients have switched over. + // This removal is tracked by rdar://107766372. + if let override = ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_PATH"] + ?? ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_URL"] { + overrides = [URL(fileURLWithPath: override)] + } else { + overrides = [] + } + #else + overrides = [] + #endif + + let candidates = overrides + [ + // Bundle should be present here when the package is linked into an App. + Bundle.main.resourceURL, + + // Bundle should be present here when the package is linked into a framework. + Bundle(for: BundleFinder.self).resourceURL, + + // For command-line tools. + Bundle.main.bundleURL, + ] + + for candidate in candidates { + let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle") + if let bundle = bundlePath.flatMap(Bundle.init(url:)) { + return bundle + } + } + fatalError("unable to find bundle named swift-nio_NIOPosix") + }() +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/040427425c93ab69df5ce6da87465ca8 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/040427425c93ab69df5ce6da87465ca8 new file mode 100644 index 0000000..b549010 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/040427425c93ab69df5ce6da87465ca8 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/060c9c51fd1bd8873bc40de46f0f4ded b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/060c9c51fd1bd8873bc40de46f0f4ded new file mode 100644 index 0000000..277f889 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/060c9c51fd1bd8873bc40de46f0f4ded @@ -0,0 +1,81 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/AES-GCM.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/BoringSSL/AES-GCM_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/BoringSSL/ChaChaPoly_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/ChaChaPoly.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Cipher.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Nonces.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ASN1.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1Any.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1BitString.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1Boolean.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1Identifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1Integer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1Null.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1OctetString.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ASN1Strings.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ArraySliceBigint.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/GeneralizedTime.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic\ ASN1\ Types/ObjectIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ECDSASignature.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PEMDocument.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PKCS8PrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SEC1PrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SubjectPublicKeyInfo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoError_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoKitErrors.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/BoringSSL/Digest_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digests.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions_SHA2.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-AEAD.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Ciphersuite.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KDF.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KexKeyDerivation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-LabeledExtract.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Utils.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/DHKEM.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/HPKE-KEM.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE-Errors.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key\ Schedule/HPKE-Context.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key\ Schedule/HPKE-KeySchedule.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Modes/HPKE-Modes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure_HashFunctions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/KEM/KEM.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key\ Agreement/BoringSSL/ECDH_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key\ Agreement/DH.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key\ Agreement/ECDH.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key\ Derivation/HKDF.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key\ Wrapping/AESWrap.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key\ Wrapping/BoringSSL/AESWrap_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/Ed25519_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/NISTCurvesKeys_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/X25519Keys_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Curve25519.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Ed25519Keys.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/NISTCurvesKeys.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/X25519Keys.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/Symmetric/SymmetricKeys.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message\ Authentication\ Codes/HMAC/HMAC.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message\ Authentication\ Codes/MACFunctions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message\ Authentication\ Codes/MessageAuthenticationCode.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PRF/AES.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSASignature_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSA_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/EdDSA_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/ECDSA.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Ed25519.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Signature.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/CryptoKitErrors_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/RNG_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/SafeCompare_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/Zeroization_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/PrettyBytes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SafeCompare.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SecureBytes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/Zeroization.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/07bc2e28e5fe50cee83234c0ce2ae15f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/07bc2e28e5fe50cee83234c0ce2ae15f new file mode 100644 index 0000000..d5d0b20 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/07bc2e28e5fe50cee83234c0ce2ae15f @@ -0,0 +1,56 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/09566a2ab8737fed7e25824783c2fbf6 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/09566a2ab8737fed7e25824783c2fbf6 new file mode 100644 index 0000000..ee5ea2f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/09566a2ab8737fed7e25824783c2fbf6 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/0bb0cbe8e64fb0f49a2cda608b8148f9 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/0bb0cbe8e64fb0f49a2cda608b8148f9 new file mode 100644 index 0000000..7076e89 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/0bb0cbe8e64fb0f49a2cda608b8148f9 @@ -0,0 +1,4 @@ +module NIOExtras { +header "NIOExtras-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/107ffc8ccada36c6c129fa5df14ace76 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/107ffc8ccada36c6c129fa5df14ace76 new file mode 100644 index 0000000..737e813 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/107ffc8ccada36c6c129fa5df14ace76 @@ -0,0 +1,4 @@ +module InternalCollectionsUtilities { +header "InternalCollectionsUtilities-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/11c73a60b9af2f9de4bd48dab8d29fae b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/11c73a60b9af2f9de4bd48dab8d29fae new file mode 100644 index 0000000..b18b206 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/11c73a60b9af2f9de4bd48dab8d29fae @@ -0,0 +1,4 @@ +module NIOTLS { +header "NIOTLS-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/12564df8547b2b56976de255c25ff7fa b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/12564df8547b2b56976de255c25ff7fa new file mode 100644 index 0000000..af1a162 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/12564df8547b2b56976de255c25ff7fa @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/12f2eb71106cbca7b63b13224a739170 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/12f2eb71106cbca7b63b13224a739170 new file mode 100644 index 0000000..6855cd7 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/12f2eb71106cbca7b63b13224a739170 @@ -0,0 +1,56 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPICommon.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIPosix.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIWindows.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocket.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+AccessibleTransport.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+SocketOptionProvider.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseStreamSocketChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Bootstrap.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ControlMessage.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/DatagramVectorReadManager.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Errors+Any.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/FileDescriptor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/GetaddrinfoResolver.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/HappyEyeballs.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IO.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerBitPacking.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerTypes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Linux.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxCPUSet.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxUring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/MultiThreadedEventLoopGroup.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOPosixSendableMetatype.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOThreadPool.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NonBlockingFileIO.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingDatagramWritesManager.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingWritesManager.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipeChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipePair.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Pool.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons+ConcurrencyTakeOver.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/RawSocketBootstrap.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Resolver.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Selectable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorEpoll.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorGeneric.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorKqueue.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorUring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorWSAPoll.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ServerSocket.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Socket.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketProtocols.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/StructuredConcurrencyHelpers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/System.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Thread.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadPosix.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadWindows.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Utilities.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockAddress.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockChannelEvents.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Windows.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/14e93f6fd63012661654e239fd325aa7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/14e93f6fd63012661654e239fd325aa7 new file mode 100644 index 0000000..53b5825 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/14e93f6fd63012661654e239fd325aa7 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/15da44f64f40eb73321637f4a5b3771d b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/15da44f64f40eb73321637f4a5b3771d new file mode 100644 index 0000000..40211eb --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/15da44f64f40eb73321637f4a5b3771d @@ -0,0 +1,4 @@ +module NIOHTTP1 { +header "NIOHTTP1-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/163f8ec5ec71406973ff9a9ca8f0ddfa b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/163f8ec5ec71406973ff9a9ca8f0ddfa new file mode 100644 index 0000000..51b2a4a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/163f8ec5ec71406973ff9a9ca8f0ddfa @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1866180cbf2bc38d8a904776cd9b06fb b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1866180cbf2bc38d8a904776cd9b06fb new file mode 100644 index 0000000..756afc9 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1866180cbf2bc38d8a904776cd9b06fb @@ -0,0 +1,8 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/18d7d4705e83cf06f102db3e16dde79b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/18d7d4705e83cf06f102db3e16dde79b new file mode 100644 index 0000000..4cfd903 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/18d7d4705e83cf06f102db3e16dde79b @@ -0,0 +1,4 @@ +module Atomics { +header "Atomics-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1be7ae0c88919fcf5a5205975b45bea9 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1be7ae0c88919fcf5a5205975b45bea9 new file mode 100644 index 0000000..8755d22 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1be7ae0c88919fcf5a5205975b45bea9 @@ -0,0 +1,81 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1d034981363346fb33f2619e924d92da b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1d034981363346fb33f2619e924d92da new file mode 100644 index 0000000..3160d9d Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1d034981363346fb33f2619e924d92da differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1e61be408c9ffba384ac3f298a90c28b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1e61be408c9ffba384ac3f298a90c28b new file mode 100644 index 0000000..adf6121 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1e61be408c9ffba384ac3f298a90c28b @@ -0,0 +1,4 @@ +module CryptoBoringWrapper { +header "CryptoBoringWrapper-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1e753df925e0215fe7385b126b3abec4 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1e753df925e0215fe7385b126b3abec4 new file mode 100644 index 0000000..7e4e5ff --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/1e753df925e0215fe7385b126b3abec4 @@ -0,0 +1,3 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingEventLoop.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/Embedded.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/205e344368d8eecd276dc5c4abd1dc9f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/205e344368d8eecd276dc5c4abd1dc9f new file mode 100644 index 0000000..9a951ff --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/205e344368d8eecd276dc5c4abd1dc9f @@ -0,0 +1,46 @@ +import class Foundation.Bundle +import class Foundation.ProcessInfo +import struct Foundation.URL + +private class BundleFinder {} + +extension Foundation.Bundle { + /// Returns the resource bundle associated with the current Swift module. + static let module: Bundle = { + let bundleName = "swift-crypto_Crypto" + + let overrides: [URL] + #if DEBUG + // The 'PACKAGE_RESOURCE_BUNDLE_PATH' name is preferred since the expected value is a path. The + // check for 'PACKAGE_RESOURCE_BUNDLE_URL' will be removed when all clients have switched over. + // This removal is tracked by rdar://107766372. + if let override = ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_PATH"] + ?? ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_URL"] { + overrides = [URL(fileURLWithPath: override)] + } else { + overrides = [] + } + #else + overrides = [] + #endif + + let candidates = overrides + [ + // Bundle should be present here when the package is linked into an App. + Bundle.main.resourceURL, + + // Bundle should be present here when the package is linked into a framework. + Bundle(for: BundleFinder.self).resourceURL, + + // For command-line tools. + Bundle.main.bundleURL, + ] + + for candidate in candidates { + let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle") + if let bundle = bundlePath.flatMap(Bundle.init(url:)) { + return bundle + } + } + fatalError("unable to find bundle named swift-crypto_Crypto") + }() +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/21d2b7766eb8ab02413dadaed3a68a72 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/21d2b7766eb8ab02413dadaed3a68a72 new file mode 100644 index 0000000..8923470 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/21d2b7766eb8ab02413dadaed3a68a72 @@ -0,0 +1,851 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Configuration.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Cursor.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+SQLCipher.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Schema.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Statements.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseBackupProgress.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseCollation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseError.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseFunction.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePool.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePublishers.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseQueue.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseReader.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegion.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegionObservation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaCache.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaSource.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshot.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshotPool.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValue.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValueConvertible.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseWriter.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DispatchQueueActor.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/FetchRequest.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Row.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowAdapter.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowDecodingError.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQL.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLInterpolation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLRequest.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SchedulingWatchdog.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SerializedDatabase.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Statement.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementAuthorizer.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementColumnConvertible.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/CoreGraphics/CGFloat.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Data.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseDateComponents.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseValueConvertible+ReferenceConvertible.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Date.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Decimal.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSData.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNull.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNumber.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSString.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/SQLiteDateParser.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/URL.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/UUID.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Decodable.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Encodable.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+RawRepresentable.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/JSONRequiredEncoder.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/Optional.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/StandardLibrary.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionClock.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionObserver.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshot.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshotTransaction.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/Database+Dump.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DatabaseReader+dump.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormat.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/DebugDumpFormat.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/JSONDumpFormat.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/LineDumpFormat.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/ListDumpFormat.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/QuoteDumpFormat.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3Pattern.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3TokenizerDescriptor.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS4.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5CustomTokenizer.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Pattern.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Tokenizer.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5TokenizerDescriptor.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5WrapperTokenizer.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Fixits.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/JSONColumn.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONExpressible.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONFunctions.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/DatabaseMigrator.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/Migration.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS3+QueryInterface.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS5+QueryInterface.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/ForeignKey.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/Association.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/AssociationAggregate.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/BelongsToAssociation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyAssociation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyThroughAssociation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneAssociation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneThroughAssociation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/JoinAssociation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/CommonTableExpression.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/QueryInterfaceRequest.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/RequestProtocols.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Column.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/DatabasePromise.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLAssociation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLCollection.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLExpression.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLForeignKeyRequest.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLFunctions.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOperators.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOrdering.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLRelation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSelection.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSubquery.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Table.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLColumnGenerator.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLGenerationContext.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLIndexGenerator.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLQueryGenerator.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableAlterationGenerator.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableGenerator.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/TableAlias.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLInterpolation+QueryInterface.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ColumnDefinition.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/Database+SchemaDefinition.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ForeignKeyDefinition.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/IndexDefinition.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableAlteration.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableDefinition.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/VirtualTableModule.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+Association.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+QueryInterfaceRequest.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord+Encodable.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+Decodable.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+TableRecord.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+DAO.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Delete.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Insert.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Save.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Update.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Upsert.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Insert.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Save.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Upsert.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/Record.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/TableRecord.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/CaseInsensitiveIdentifier.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections+English.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Mutex.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OnDemandFuture.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OrderedDictionary.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Pool.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReadWriteLock.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReceiveValuesOn.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Refinable.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Utils.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/DatabaseCancellable.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueConcurrentObserver.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueWriteOnlyObserver.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Fetch.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Map.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/RemoveDuplicates.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Trace.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/ValueReducer.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/SharedValueObservation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservation.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservationScheduler.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift" : { + "index-unit-output-path" : "/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2429123d3a03ac73ec7d124f6eb26555 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2429123d3a03ac73ec7d124f6eb26555 new file mode 100644 index 0000000..3d78e5d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2429123d3a03ac73ec7d124f6eb26555 @@ -0,0 +1,4 @@ +module _CertificateInternals { +header "_CertificateInternals-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/24f7b0f4beee1ea7d69fdbdfb9c37cc8 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/24f7b0f4beee1ea7d69fdbdfb9c37cc8 new file mode 100644 index 0000000..5339958 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/24f7b0f4beee1ea7d69fdbdfb9c37cc8 @@ -0,0 +1,4 @@ +module ContainersPreview { +header "ContainersPreview-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/25efba864ae72aa5b63657b68bca7735 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/25efba864ae72aa5b63657b68bca7735 new file mode 100644 index 0000000..dd4b064 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/25efba864ae72aa5b63657b68bca7735 @@ -0,0 +1,108 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttribute.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttributes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRVersion.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificateSigningRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificationRequestInfo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/ExtensionRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Certificate.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePublicKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateSerialNumber.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateVersion.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSAttribute.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSContentInfo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSEncapsulatedContentInfo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSIssuerAndSerialNumber.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSOperations.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignature.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignedData.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerInfo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSVersion.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Curve25519+DER.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CustomPrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Digests.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CommonName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CountryName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DNBuilder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DomainComponent.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/EmailAddress.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/LocalityName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationalUnitName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StateOrProvinceName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StreetAddress.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Error.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/AuthorityInformationAccess.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/AuthorityKeyIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/BasicConstraints.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/ExtendedKeyUsage.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/ExtensionIdentifiers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/KeyUsage.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/NameConstraints.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/SubjectAlternativeName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension\ Types/SubjectKeyIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extensions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/ExtensionsBuilder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/GeneralName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Lock.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/LockedValueBox.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/BasicOCSPResponse.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/DirectoryString.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertID.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertStatus.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPExtensionID.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPNonce.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponse.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseBytes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseData.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseStatus.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSignature.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleResponse.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPTBSRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPVersion.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PKCS8PrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PromiseAndFuture.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RDNAttribute.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RandomNumberGenerator+bytes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RelativeDistinguishedName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SEC1PrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SecKeyWrapper.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Signature.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SignatureAlgorithm.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AllOfPolicies.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AnyPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CertificateStore.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CustomCertificateStore.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/OneOfPolicies.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/PolicyBuilder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/BasicConstraintsPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DNSNames.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DirectoryNames.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/ExpiryPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/IPConstraints.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/NameConstraintsPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/RFC5280Policy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/URIConstraints.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/VersionPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ServerIdentityPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/TrustRootLoading.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/UnverifiedChain.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ValidatedCertificateChain.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerificationDiagnostic.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/Verifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerifierPolicy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/AlgorithmIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/ECDSASignature.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/RSAPKCS1PublicKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/SubjectPublicKeyInfo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TBSCertificate.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Time.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TimeCalculations.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Validity.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509SendableMetatype.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2628f38839349459ac5d0de8096ef7c7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2628f38839349459ac5d0de8096ef7c7 new file mode 100644 index 0000000..f1464ad --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2628f38839349459ac5d0de8096ef7c7 @@ -0,0 +1,46 @@ +import class Foundation.Bundle +import class Foundation.ProcessInfo +import struct Foundation.URL + +private class BundleFinder {} + +extension Foundation.Bundle { + /// Returns the resource bundle associated with the current Swift module. + static let module: Bundle = { + let bundleName = "GRDB_GRDB" + + let overrides: [URL] + #if DEBUG + // The 'PACKAGE_RESOURCE_BUNDLE_PATH' name is preferred since the expected value is a path. The + // check for 'PACKAGE_RESOURCE_BUNDLE_URL' will be removed when all clients have switched over. + // This removal is tracked by rdar://107766372. + if let override = ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_PATH"] + ?? ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_URL"] { + overrides = [URL(fileURLWithPath: override)] + } else { + overrides = [] + } + #else + overrides = [] + #endif + + let candidates = overrides + [ + // Bundle should be present here when the package is linked into an App. + Bundle.main.resourceURL, + + // Bundle should be present here when the package is linked into a framework. + Bundle(for: BundleFinder.self).resourceURL, + + // For command-line tools. + Bundle.main.bundleURL, + ] + + for candidate in candidates { + let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle") + if let bundle = bundlePath.flatMap(Bundle.init(url:)) { + return bundle + } + } + fatalError("unable to find bundle named GRDB_GRDB") + }() +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/264e56474daa6f306d4d89fec875ba39 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/264e56474daa6f306d4d89fec875ba39 new file mode 100644 index 0000000..5bd612c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/264e56474daa6f306d4d89fec875ba39 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/264ec0f02f1ee4f258e12c16bf6495ba b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/264ec0f02f1ee4f258e12c16bf6495ba new file mode 100644 index 0000000..fa9ac69 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/264ec0f02f1ee4f258e12c16bf6495ba @@ -0,0 +1,16 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIO/Exports.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/27d141c55eb8ffb87a74610ea975b0b9 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/27d141c55eb8ffb87a74610ea975b0b9 new file mode 100644 index 0000000..9e7937f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/27d141c55eb8ffb87a74610ea975b0b9 @@ -0,0 +1,4 @@ +module NIOConcurrencyHelpers { +header "NIOConcurrencyHelpers-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2973facd179e0b44586202e8c55ab098 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2973facd179e0b44586202e8c55ab098 new file mode 100644 index 0000000..29e3ad4 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2973facd179e0b44586202e8c55ab098 @@ -0,0 +1,5 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ApplicationProtocolNegotiationHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/NIOTypedApplicationProtocolNegotiationHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ProtocolNegotiationHandlerStateMachine.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/SNIHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/TLSEvents.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2a6a7821d2f5976a4ddcb632d93a18b0 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2a6a7821d2f5976a4ddcb632d93a18b0 new file mode 100644 index 0000000..0ce25cd --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2a6a7821d2f5976a4ddcb632d93a18b0 @@ -0,0 +1,168 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2ae63e115fa951feda89b26b293ac6b3 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2ae63e115fa951feda89b26b293ac6b3 new file mode 100644 index 0000000..42b7692 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2ae63e115fa951feda89b26b293ac6b3 @@ -0,0 +1,168 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Configuration.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Cursor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+SQLCipher.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Schema.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Statements.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseBackupProgress.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseCollation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseError.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseFunction.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePool.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePublishers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseQueue.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseReader.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegion.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegionObservation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaCache.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaSource.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshot.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshotPool.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValue.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValueConvertible.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseWriter.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DispatchQueueActor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/FetchRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Row.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowAdapter.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowDecodingError.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQL.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLInterpolation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SchedulingWatchdog.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SerializedDatabase.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Statement.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementAuthorizer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementColumnConvertible.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/CoreGraphics/CGFloat.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Data.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseDateComponents.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseValueConvertible+ReferenceConvertible.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Date.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Decimal.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSData.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNull.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNumber.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSString.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/SQLiteDateParser.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/URL.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/UUID.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Decodable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Encodable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+RawRepresentable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/JSONRequiredEncoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/Optional.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/StandardLibrary.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionClock.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionObserver.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshot.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshotTransaction.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/Database+Dump.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DatabaseReader+dump.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormat.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/DebugDumpFormat.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/JSONDumpFormat.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/LineDumpFormat.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/ListDumpFormat.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/QuoteDumpFormat.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3Pattern.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3TokenizerDescriptor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS4.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5CustomTokenizer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Pattern.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Tokenizer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5TokenizerDescriptor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5WrapperTokenizer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Fixits.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/JSONColumn.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONExpressible.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONFunctions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/DatabaseMigrator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/Migration.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS3+QueryInterface.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS5+QueryInterface.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/ForeignKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/Association.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/AssociationAggregate.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/BelongsToAssociation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyAssociation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyThroughAssociation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneAssociation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneThroughAssociation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/JoinAssociation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/CommonTableExpression.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/QueryInterfaceRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/RequestProtocols.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Column.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/DatabasePromise.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLAssociation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLCollection.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLExpression.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLForeignKeyRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLFunctions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOperators.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOrdering.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLRelation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSelection.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSubquery.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Table.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLColumnGenerator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLGenerationContext.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLIndexGenerator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLQueryGenerator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableAlterationGenerator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableGenerator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/TableAlias.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLInterpolation+QueryInterface.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ColumnDefinition.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/Database+SchemaDefinition.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ForeignKeyDefinition.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/IndexDefinition.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableAlteration.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableDefinition.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/VirtualTableModule.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+Association.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+QueryInterfaceRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord+Encodable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+Decodable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+TableRecord.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+DAO.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Delete.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Insert.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Save.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Update.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Upsert.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Insert.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Save.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Upsert.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/Record.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/TableRecord.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/CaseInsensitiveIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections+English.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Mutex.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OnDemandFuture.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OrderedDictionary.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Pool.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReadWriteLock.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReceiveValuesOn.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Refinable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Utils.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/DatabaseCancellable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueConcurrentObserver.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueWriteOnlyObserver.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Fetch.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Map.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/RemoveDuplicates.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Trace.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/ValueReducer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/SharedValueObservation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservationScheduler.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2bfdb2deac2cab150250e08c3cc43a26 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2bfdb2deac2cab150250e08c3cc43a26 new file mode 100644 index 0000000..b68fefb --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2bfdb2deac2cab150250e08c3cc43a26 @@ -0,0 +1,4 @@ +module NIOEmbedded { +header "NIOEmbedded-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2d11af28afafb67ca476c797da678b20 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2d11af28afafb67ca476c797da678b20 new file mode 100644 index 0000000..3c607b5 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2d11af28afafb67ca476c797da678b20 @@ -0,0 +1,366 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AddressedEnvelope.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncAwaitSupport.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelInboundStream.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelOutboundWriter.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducer.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducerStrategies.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncWriter.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOThrowingAsyncSequenceProducer.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/BSDSocketAPI.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-aux.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-binaryEncodedLengthPrefix.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-conversions.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-core.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-hex.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-int.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-lengthPrefix.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-multi-int.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-quicBinaryEncodingStrategy.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-views.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Channel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandlers.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelInvoker.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelOption.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/CircularBuffer.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Codec.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ConvenienceOptionSupport.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DeadChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DispatchQueue+WithFuture.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+Deprecated.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+SerialExecutor.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+AssumeIsolated.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+Deprecated.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+WithEventLoop.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileDescriptor.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileRegion.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/GlobalSingletons.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IO.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IOData.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IPProtocol.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerBitPacking.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerTypes.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Interfaces.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Linux.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MarkedCircularBuffer.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MulticastChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOAny.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCloseOnErrorHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCoreSendableMetatype.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIODecodedAsyncSequence.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOLoopBound.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOPooledRecvBufferAllocator.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOScheduledCallback.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSendable.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSplitLinesMessageDecoder.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOTransportAccessibleChannelCore.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/RecvByteBufferAllocator.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SingleStepByteToMessageDecoder.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketAddresses.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketOptionProvider.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SystemCallHelpers.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TimeAmount+Duration.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TypeAssistedChannelHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/UniversalBootstrapSupport.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Utilities.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2d2a527bc64bdbf55faff2b97b8ced35 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2d2a527bc64bdbf55faff2b97b8ced35 new file mode 100644 index 0000000..972d2f4 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2d2a527bc64bdbf55faff2b97b8ced35 @@ -0,0 +1,19 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugInboundEventsHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugOutboundEventsHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/FixedLengthFrameDecoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/HTTP1ProxyConnectHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming+ContentLengthHeader.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldBasedFrameDecoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldPrepender.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LineBasedFrameDecoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/MarkedCircularBuffer+PopFirstCheckMarked.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOExtrasError.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOLengthFieldBitLength.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIORequestIdentifiable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/PCAPRingBuffer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/QuiescingHelper.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandlers+State.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseWithIDHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/WritePCAPHandler.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2de6a04cdba79ed13580c47dfd70cc5f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2de6a04cdba79ed13580c47dfd70cc5f new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2de6a04cdba79ed13580c47dfd70cc5f @@ -0,0 +1,5 @@ + + + + + diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2e2bf976035a88c33e14c907202fd373 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2e2bf976035a88c33e14c907202fd373 new file mode 100644 index 0000000..0295d2b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2e2bf976035a88c33e14c907202fd373 @@ -0,0 +1,4 @@ +module CNIOWASI { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/include/CNIOWASI.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2e9dc23dd3c0838e80f96c24732c609d b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2e9dc23dd3c0838e80f96c24732c609d new file mode 100644 index 0000000..4b87af1 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/2e9dc23dd3c0838e80f96c24732c609d @@ -0,0 +1,9 @@ +#import + +__BEGIN_DECLS + +NSBundle* swift_crypto_CCryptoBoringSSL_SWIFTPM_MODULE_BUNDLE(void); + +#define SWIFTPM_MODULE_BUNDLE swift_crypto_CCryptoBoringSSL_SWIFTPM_MODULE_BUNDLE() + +__END_DECLS \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/31c00cd19b3ec53ffd91892b0ddd85db b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/31c00cd19b3ec53ffd91892b0ddd85db new file mode 100644 index 0000000..e07f54d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/31c00cd19b3ec53ffd91892b0ddd85db @@ -0,0 +1,4 @@ +module CNIOBoringSSLShims { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/include/CNIOBoringSSLShims.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/31c4f3cb52ff1c1880106d29d5ba9524 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/31c4f3cb52ff1c1880106d29d5ba9524 new file mode 100644 index 0000000..f190b65 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/31c4f3cb52ff1c1880106d29d5ba9524 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOPosix' -fpascal-strings -Os -DSWIFT_PACKAGE -D_GNU_SOURCE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/324773f294928040be4b584c4b4f91b5 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/324773f294928040be4b584c4b4f91b5 new file mode 100644 index 0000000..06b1c19 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/324773f294928040be4b584c4b4f91b5 @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3309186f92a9c9eea76d4e2a6f12f52a b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3309186f92a9c9eea76d4e2a6f12f52a new file mode 100644 index 0000000..a7ed0e0 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3309186f92a9c9eea76d4e2a6f12f52a @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/33f1963c734ca544a073d84c3d683d83 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/33f1963c734ca544a073d84c3d683d83 new file mode 100644 index 0000000..9691525 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/33f1963c734ca544a073d84c3d683d83 differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/39923521066564c4c9f320487ed34590 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/39923521066564c4c9f320487ed34590 new file mode 100644 index 0000000..d455e04 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/39923521066564c4c9f320487ed34590 @@ -0,0 +1,18 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3b2fea8d6afe939a5d48d3007a60c452 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3b2fea8d6afe939a5d48d3007a60c452 new file mode 100644 index 0000000..d8afc54 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3b2fea8d6afe939a5d48d3007a60c452 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3d396a82ce4909738793eb366852b97a b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3d396a82ce4909738793eb366852b97a new file mode 100644 index 0000000..fbe5d7c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3d396a82ce4909738793eb366852b97a @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3f12d11c441f23a711db30fba34438c2 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3f12d11c441f23a711db30fba34438c2 new file mode 100644 index 0000000..fd1fe6f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3f12d11c441f23a711db30fba34438c2 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3f5c6acac7a0bf32efa6250ce35f8046 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3f5c6acac7a0bf32efa6250ce35f8046 new file mode 100644 index 0000000..88db3fd --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/3f5c6acac7a0bf32efa6250ce35f8046 @@ -0,0 +1,106 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/OptionalRawRepresentable.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/RawRepresentable.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/AtomicBool.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/IntegerConformances.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/PointerConformances.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Primitives/autogenerated/Primitives.native.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicInteger.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicOptionalWrappable.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicReference.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicStorage.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicValue.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/AtomicMemoryOrderings.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/DoubleWord.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomic.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomicLazyReference.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomic.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomicLazyReference.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/autogenerated/IntegerOperations.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Unmanaged extensions.swift" : { + "index-unit-output-path" : "/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4258a2000b2eb4d3f0a63b033419414e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4258a2000b2eb4d3f0a63b033419414e new file mode 100644 index 0000000..f615606 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4258a2000b2eb4d3f0a63b033419414e @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/425c3accf31f91a0ac3e66e294e38621 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/425c3accf31f91a0ac3e66e294e38621 new file mode 100644 index 0000000..e5a3a5d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/425c3accf31f91a0ac3e66e294e38621 @@ -0,0 +1,4 @@ +module CNIOAtomics { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/42a03a9fc89f5a5f7fe132115eb51429 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/42a03a9fc89f5a5f7fe132115eb51429 new file mode 100644 index 0000000..69301b0 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/42a03a9fc89f5a5f7fe132115eb51429 @@ -0,0 +1,33 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/AndroidCABundle.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ByteBufferBIO.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/CustomPrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/IdentityVerification.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/LinuxCABundle.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLClientHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler+Configuration.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLServerHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ObjectIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PosixPort.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCallbacks.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificate.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateExtensions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLConnection.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLContext.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLErrors.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLInit.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPKCS12Bundle.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPublicKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SecurityFrameworkCertificateVerification.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/String+unsafeUninitializedCapacity.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SubjectAlternativeName.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/NIOSSLSecureBytes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/RNG.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/SafeCompare.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/Zeroization.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/TLSConfiguration.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UniversalBootstrapSupport.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UnsafeKeyAndChainTarget.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/42c8a70b980848f2c88bd8be6d67c396 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/42c8a70b980848f2c88bd8be6d67c396 new file mode 100644 index 0000000..2d8a18f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/42c8a70b980848f2c88bd8be6d67c396 @@ -0,0 +1,4 @@ +module SwiftASN1 { +header "SwiftASN1-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/43a801c4417d39c07f4f0cedb3d34396 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/43a801c4417d39c07f4f0cedb3d34396 new file mode 100644 index 0000000..3e2c287 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/43a801c4417d39c07f4f0cedb3d34396 @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/44e97aadc20221dcd13467f67235ad0e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/44e97aadc20221dcd13467f67235ad0e new file mode 100644 index 0000000..bbfc15e --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/44e97aadc20221dcd13467f67235ad0e @@ -0,0 +1,416 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/AES-GCM.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/BoringSSL/AES-GCM_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/BoringSSL/ChaChaPoly_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/ChaChaPoly.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Cipher.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Nonces.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ASN1.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Any.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1BitString.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Boolean.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Identifier.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Integer.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Null.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1OctetString.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Strings.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ArraySliceBigint.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/GeneralizedTime.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ObjectIdentifier.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ECDSASignature.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PEMDocument.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PKCS8PrivateKey.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SEC1PrivateKey.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SubjectPublicKeyInfo.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoError_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoKitErrors.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/BoringSSL/Digest_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digest.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digests.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions_SHA2.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-AEAD.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Ciphersuite.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KDF.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KexKeyDerivation.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-LabeledExtract.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Utils.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/DHKEM.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/HPKE-KEM.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE-Errors.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-Context.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-KeySchedule.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Modes/HPKE-Modes.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure_HashFunctions.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/KEM/KEM.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/BoringSSL/ECDH_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/DH.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/ECDH.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Derivation/HKDF.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/AESWrap.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/BoringSSL/AESWrap_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/Ed25519_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/NISTCurvesKeys_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/X25519Keys_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Curve25519.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Ed25519Keys.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/NISTCurvesKeys.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/X25519Keys.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/Symmetric/SymmetricKeys.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/HMAC/HMAC.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MACFunctions.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MessageAuthenticationCode.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PRF/AES.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSASignature_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSA_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/EdDSA_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/ECDSA.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Ed25519.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Signature.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/CryptoKitErrors_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/RNG_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/SafeCompare_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/Zeroization_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/PrettyBytes.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SafeCompare.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SecureBytes.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/Zeroization.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4703c698a388b801352f74d279abac9f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4703c698a388b801352f74d279abac9f new file mode 100644 index 0000000..0792746 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4703c698a388b801352f74d279abac9f @@ -0,0 +1,4 @@ +module CNIOOpenBSD { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/include/CNIOOpenBSD.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4922e7e3a4f91d669be445fcbede956f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4922e7e3a4f91d669be445fcbede956f new file mode 100644 index 0000000..c324fa2 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4922e7e3a4f91d669be445fcbede956f @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4ac9a487b337de9028f8e26f8ba10f46 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4ac9a487b337de9028f8e26f8ba10f46 new file mode 100644 index 0000000..3013e0e --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4ac9a487b337de9028f8e26f8ba10f46 @@ -0,0 +1,32 @@ +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface swift_crypto_CCryptoBoringSSLShims_SWIFTPM_MODULE_BUNDLER_FINDER : NSObject +@end + +@implementation swift_crypto_CCryptoBoringSSLShims_SWIFTPM_MODULE_BUNDLER_FINDER +@end + +NSBundle* swift_crypto_CCryptoBoringSSLShims_SWIFTPM_MODULE_BUNDLE() { + NSString *bundleName = @"swift_crypto_CCryptoBoringSSLShims"; + + NSArray *candidates = @[ + NSBundle.mainBundle.resourceURL, + [NSBundle bundleForClass:[swift_crypto_CCryptoBoringSSLShims_SWIFTPM_MODULE_BUNDLER_FINDER class]].resourceURL, + NSBundle.mainBundle.bundleURL + ]; + + for (NSURL* candidate in candidates) { + NSURL *bundlePath = [candidate URLByAppendingPathComponent:[NSString stringWithFormat:@"%@.bundle", bundleName]]; + + NSBundle *bundle = [NSBundle bundleWithURL:bundlePath]; + if (bundle != nil) { + return bundle; + } + } + + @throw [[NSException alloc] initWithName:@"SwiftPMResourcesAccessor" reason:[NSString stringWithFormat:@"unable to find bundle named %@", bundleName] userInfo:nil]; +} + +NS_ASSUME_NONNULL_END \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4be16b4f9338ceeace794ce11d459362 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4be16b4f9338ceeace794ce11d459362 new file mode 100644 index 0000000..04726f7 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4be16b4f9338ceeace794ce11d459362 @@ -0,0 +1,96 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/ByteCollectionUtils.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPDecoder.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPEncoder.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaderValidator.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaders+Validation.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPPipelineSetup.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerPipelineHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerProtocolErrorHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerUpgradeHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypedPipelineSetup.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypes.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPClientUpgradeHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPObjectAggregator.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgradeHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgraderStateMachine.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgradeHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgraderStateMachine.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4c1ad86f86a587da5c29dc2b6652e3de b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4c1ad86f86a587da5c29dc2b6652e3de new file mode 100644 index 0000000..c89ae48 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/4c1ad86f86a587da5c29dc2b6652e3de @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIO/Exports.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/50ab71d2bc45bb30ed09caff820669b2 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/50ab71d2bc45bb30ed09caff820669b2 new file mode 100644 index 0000000..e81af17 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/50ab71d2bc45bb30ed09caff820669b2 @@ -0,0 +1,4 @@ +module X509 { +header "X509-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/54c6f525ac44cbc3ba6f231be6d983fa b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/54c6f525ac44cbc3ba6f231be6d983fa new file mode 100644 index 0000000..bcf4ed7 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/54c6f525ac44cbc3ba6f231be6d983fa @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5529cb243cba68324b38b0873cf077e2 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5529cb243cba68324b38b0873cf077e2 new file mode 100644 index 0000000..1915802 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5529cb243cba68324b38b0873cf077e2 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/55e00f7438cc8f8ca321e8ee65b5ef15 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/55e00f7438cc8f8ca321e8ee65b5ef15 new file mode 100644 index 0000000..1cdaf2e --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/55e00f7438cc8f8ca321e8ee65b5ef15 @@ -0,0 +1,5 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/561f7f6643d5f4a00fad6d7c2cbec430 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/561f7f6643d5f4a00fad6d7c2cbec430 new file mode 100644 index 0000000..45a6f4a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/561f7f6643d5f4a00fad6d7c2cbec430 @@ -0,0 +1,16 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/_CertificateInternals/_TinyArray.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5690b8a103957e48e0e18d71a8dcd900 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5690b8a103957e48e0e18d71a8dcd900 new file mode 100644 index 0000000..2bbac48 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5690b8a103957e48e0e18d71a8dcd900 @@ -0,0 +1,32 @@ +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface swift_crypto_CCryptoBoringSSL_SWIFTPM_MODULE_BUNDLER_FINDER : NSObject +@end + +@implementation swift_crypto_CCryptoBoringSSL_SWIFTPM_MODULE_BUNDLER_FINDER +@end + +NSBundle* swift_crypto_CCryptoBoringSSL_SWIFTPM_MODULE_BUNDLE() { + NSString *bundleName = @"swift_crypto_CCryptoBoringSSL"; + + NSArray *candidates = @[ + NSBundle.mainBundle.resourceURL, + [NSBundle bundleForClass:[swift_crypto_CCryptoBoringSSL_SWIFTPM_MODULE_BUNDLER_FINDER class]].resourceURL, + NSBundle.mainBundle.bundleURL + ]; + + for (NSURL* candidate in candidates) { + NSURL *bundlePath = [candidate URLByAppendingPathComponent:[NSString stringWithFormat:@"%@.bundle", bundleName]]; + + NSBundle *bundle = [NSBundle bundleWithURL:bundlePath]; + if (bundle != nil) { + return bundle; + } + } + + @throw [[NSException alloc] initWithName:@"SwiftPMResourcesAccessor" reason:[NSString stringWithFormat:@"unable to find bundle named %@", bundleName] userInfo:nil]; +} + +NS_ASSUME_NONNULL_END \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/575fbc09303036cffc6cadd5df0f679b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/575fbc09303036cffc6cadd5df0f679b new file mode 100644 index 0000000..5e6d1ec --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/575fbc09303036cffc6cadd5df0f679b @@ -0,0 +1,35 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/585ea6495dc9f21e7a131a01565baca7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/585ea6495dc9f21e7a131a01565baca7 new file mode 100644 index 0000000..e55eab6 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/585ea6495dc9f21e7a131a01565baca7 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIOBase64/Base64.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5956e114ac35ab6cf2267580d3aeca40 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5956e114ac35ab6cf2267580d3aeca40 new file mode 100644 index 0000000..b360a28 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5956e114ac35ab6cf2267580d3aeca40 @@ -0,0 +1,26 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/Heap.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/PriorityQueue.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/_TinyArray.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5979078bc6bab3fbf6e3c8be938c4dcc b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5979078bc6bab3fbf6e3c8be938c4dcc new file mode 100644 index 0000000..717e429 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5979078bc6bab3fbf6e3c8be938c4dcc @@ -0,0 +1,4 @@ +module _CryptoExtras { +header "_CryptoExtras-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5b2e11e0592aab6dd5e1a5c49b0434a6 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5b2e11e0592aab6dd5e1a5c49b0434a6 new file mode 100644 index 0000000..0bc2ccc --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5b2e11e0592aab6dd5e1a5c49b0434a6 @@ -0,0 +1,36 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/OutputSpan+Extras.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/TemporaryAllocation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Copy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+ElementsEqual.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Filter.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Map.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Reduce.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+SpanwiseZip.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Standard\ Conformances.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Utilities.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/BidirectionalContainer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+Filter.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+SpanwiseZip.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/ContainerIterator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/DynamicContainer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/MutableContainer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/PermutableContainer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RandomAccessContainer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeExpression2.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeReplaceableContainer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Map.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Reduce.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Collect.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Filter.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Map.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Reduce.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Borrow.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Box.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Inout.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/InputSpan.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Shared.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5b5ad8683a68ee9a3d11daf31285e660 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5b5ad8683a68ee9a3d11daf31285e660 new file mode 100644 index 0000000..685d243 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5b5ad8683a68ee9a3d11daf31285e660 @@ -0,0 +1,19 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5cba8da5725d75242a06d695c6210852 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5cba8da5725d75242a06d695c6210852 new file mode 100644 index 0000000..e822009 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/5cba8da5725d75242a06d695c6210852 @@ -0,0 +1,316 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CBC.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CFB.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CTR.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_GCM_SIV.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/Block Function.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CFB_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CTR_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_GCM_SIV_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/CMAC.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC+API.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCCredential.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCEncoding.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPrecredential.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPresentation.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCRequest.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCResponse.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCServer.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/BoringSSL/ChaCha20CTR_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/ChaCha20CTR.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/ObjectIdentifier.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8DERRepresentation.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8PrivateKey.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/RFC8410AlgorithmIdentifier.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/BoringSSL/ECToolbox_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/ECToolbox.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/H2G/HashToField.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/KDF.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/PBKDF2.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/BoringSSL/Scrypt_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/Scrypt.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRF.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFClient.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFServer.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRF+API.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFClient.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFServer.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/BoringSSLHelpers.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/CryptoKitErrors_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Data+Extensions.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/DigestType.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Error.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/I2OSP.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/IntegerEncoding.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PEMDocument.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PrettyBytes.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/SubjectPublicKeyInfo.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadOps.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadPosix.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadSpecific.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadWindows.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/DLEQ.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Prover.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Verifier.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/ZKPToolbox.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/613a48f585cd97f68904b375bc69c404 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/613a48f585cd97f68904b375bc69c404 new file mode 100644 index 0000000..e88f335 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/613a48f585cd97f68904b375bc69c404 @@ -0,0 +1,44 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Codable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Collection.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+CustomReflectable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Descriptions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Equatable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+ExpressibleByArrayLiteral.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Extras.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Hashable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Testing.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._Storage.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._UnsafeHandle.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBuffer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBufferHeader.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Append.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Consumption.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Container.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Descriptions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Equatable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Experimental.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Hashable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Initializers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Insertions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Prepend.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Removals.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Replacements.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Testing.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Append.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Consumption.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Container.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Descriptions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Equatable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Experimental.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Hashable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Initializers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Insertions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Prepend.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Removals.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Replacements.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_DequeSlot.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeHandle.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeSegments.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/61ec20e782af42eb89062ac843684442 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/61ec20e782af42eb89062ac843684442 new file mode 100644 index 0000000..e672ac1 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/61ec20e782af42eb89062ac843684442 @@ -0,0 +1,4 @@ +module CNIOPosix { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/include/CNIOPosix.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63620b2babcce7ddd2c82af5af46398c b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63620b2babcce7ddd2c82af5af46398c new file mode 100644 index 0000000..3a2ae05 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63620b2babcce7ddd2c82af5af46398c differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63a4997816a323f16542a59929b9a046 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63a4997816a323f16542a59929b9a046 new file mode 100644 index 0000000..536bd52 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63a4997816a323f16542a59929b9a046 @@ -0,0 +1,5 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63f9c655a883b72dff48cd8f3d591bfb b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63f9c655a883b72dff48cd8f3d591bfb new file mode 100644 index 0000000..c932d7c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/63f9c655a883b72dff48cd8f3d591bfb @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/_CertificateInternals/_TinyArray.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/667965e469411f0d3e2c0d20b567bcfe b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/667965e469411f0d3e2c0d20b567bcfe new file mode 100644 index 0000000..d1800a6 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/667965e469411f0d3e2c0d20b567bcfe @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/66d551f705e2ce80505c622c7cfc3ab3 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/66d551f705e2ce80505c622c7cfc3ab3 new file mode 100644 index 0000000..b59f8c3 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/66d551f705e2ce80505c622c7cfc3ab3 @@ -0,0 +1,4 @@ +module _NIOBase64 { +header "_NIOBase64-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6978920b4c503d7c36d541f3d1dd9685 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6978920b4c503d7c36d541f3d1dd9685 new file mode 100644 index 0000000..6a380d6 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6978920b4c503d7c36d541f3d1dd9685 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOWindows' -fpascal-strings -Os -DSWIFT_PACKAGE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/69c0970e2f1e197722bc3f266d6501c3 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/69c0970e2f1e197722bc3f266d6501c3 new file mode 100644 index 0000000..e5e0956 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/69c0970e2f1e197722bc3f266d6501c3 @@ -0,0 +1,8 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6aefedd091b78902d4d0136fc867d45a b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6aefedd091b78902d4d0136fc867d45a new file mode 100644 index 0000000..3d6c6ad --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6aefedd091b78902d4d0136fc867d45a @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6bae0af98f84d747a2d67833e2e81f24 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6bae0af98f84d747a2d67833e2e81f24 new file mode 100644 index 0000000..c79ee51 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6bae0af98f84d747a2d67833e2e81f24 @@ -0,0 +1,16 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6e2e909b555fc8386adf142f1c3b0de2 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6e2e909b555fc8386adf142f1c3b0de2 new file mode 100644 index 0000000..481a354 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6e2e909b555fc8386adf142f1c3b0de2 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CCryptoBoringSSLShims' -fpascal-strings -Os -DSWIFT_PACKAGE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6ecd6963fcf1fd0404d045930ba47a23 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6ecd6963fcf1fd0404d045930ba47a23 new file mode 100644 index 0000000..937140e --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/6ecd6963fcf1fd0404d045930ba47a23 @@ -0,0 +1,71 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/70e6b267aa996a654c6b298f10fead41 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/70e6b267aa996a654c6b298f10fead41 new file mode 100644 index 0000000..5d5ab75 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/70e6b267aa996a654c6b298f10fead41 @@ -0,0 +1,36 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ApplicationProtocolNegotiationHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/NIOTypedApplicationProtocolNegotiationHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ProtocolNegotiationHandlerStateMachine.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/SNIHandler.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/TLSEvents.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/713f89317e8d0c68c248378058361044 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/713f89317e8d0c68c248378058361044 new file mode 100644 index 0000000..f1c8c4e --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/713f89317e8d0c68c248378058361044 @@ -0,0 +1,4 @@ +module CNIODarwin { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/72aea5c27cf4e1839973b66431c6e0c9 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/72aea5c27cf4e1839973b66431c6e0c9 new file mode 100644 index 0000000..ba6afd9 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/72aea5c27cf4e1839973b66431c6e0c9 @@ -0,0 +1,4 @@ +module NIOCore { +header "NIOCore-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/731db626ea2b83cc176dc9c57097026f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/731db626ea2b83cc176dc9c57097026f new file mode 100644 index 0000000..a162d67 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/731db626ea2b83cc176dc9c57097026f @@ -0,0 +1,191 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/OutputSpan+Extras.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/TemporaryAllocation.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Copy.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+ElementsEqual.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Filter.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Map.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Reduce.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+SpanwiseZip.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Standard Conformances.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Utilities.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/BidirectionalContainer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+Filter.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+SpanwiseZip.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/ContainerIterator.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/DynamicContainer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/MutableContainer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/PermutableContainer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RandomAccessContainer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeExpression2.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeReplaceableContainer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Map.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Reduce.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Collect.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Filter.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Map.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Reduce.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Borrow.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Box.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Inout.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/InputSpan.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Shared.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7674219648aa1a7c222019664ef25642 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7674219648aa1a7c222019664ef25642 new file mode 100644 index 0000000..289c64d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7674219648aa1a7c222019664ef25642 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOBoringSSLShims' -fpascal-strings -Os -DSWIFT_PACKAGE -D_GNU_SOURCE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7695db5250e1c3134b1761128d1d8bd0 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7695db5250e1c3134b1761128d1d8bd0 new file mode 100644 index 0000000..6dbdaba --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7695db5250e1c3134b1761128d1d8bd0 @@ -0,0 +1,19 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Debugging.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Descriptions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/FixedWidthInteger+roundUpToPowerOfTwo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/Integer\ rank.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+first\ and\ last\ set\ bit.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+reversed.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/LifetimeOverride.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/RandomAccessCollection+Offsets.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Span+Extras.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/String+Padding.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+Index.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+_Word.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBufferPointer+Extras.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableBufferPointer+Extras.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableRawBufferPointer+Extras.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeRawBufferPointer+Extras.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_SortedCollection.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_UniqueCollection.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/76e34647def3d61a934b8bbd332119c1 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/76e34647def3d61a934b8bbd332119c1 new file mode 100644 index 0000000..9bb54f9 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/76e34647def3d61a934b8bbd332119c1 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/774f87e5dec67132df2d17499308c437 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/774f87e5dec67132df2d17499308c437 new file mode 100644 index 0000000..1b2cf74 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/774f87e5dec67132df2d17499308c437 @@ -0,0 +1,17 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/77e3672daf2c7fd2a66ee6715bd94334 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/77e3672daf2c7fd2a66ee6715bd94334 new file mode 100644 index 0000000..63351a2 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/77e3672daf2c7fd2a66ee6715bd94334 @@ -0,0 +1,108 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/783335d0e3f006a432b362fa3965aa20 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/783335d0e3f006a432b362fa3965aa20 new file mode 100644 index 0000000..39d3c7c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/783335d0e3f006a432b362fa3965aa20 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/786547b585e035bd6c9c7a807c40b61b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/786547b585e035bd6c9c7a807c40b61b new file mode 100644 index 0000000..fb8104b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/786547b585e035bd6c9c7a807c40b61b @@ -0,0 +1,3 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/78e10fba08c93db8260ce962d7dd734b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/78e10fba08c93db8260ce962d7dd734b new file mode 100644 index 0000000..55dc84b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/78e10fba08c93db8260ce962d7dd734b @@ -0,0 +1,22 @@ +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/78f9191c13194b4483aee2a4007eec51 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/78f9191c13194b4483aee2a4007eec51 new file mode 100644 index 0000000..d2bf500 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/78f9191c13194b4483aee2a4007eec51 @@ -0,0 +1,71 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AddressedEnvelope.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncAwaitSupport.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelInboundStream.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelOutboundWriter.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducerStrategies.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncWriter.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOThrowingAsyncSequenceProducer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/BSDSocketAPI.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-aux.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-binaryEncodedLengthPrefix.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-conversions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-core.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-hex.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-int.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-lengthPrefix.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-multi-int.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-quicBinaryEncodingStrategy.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-views.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Channel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandlers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelInvoker.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelOption.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/CircularBuffer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Codec.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ConvenienceOptionSupport.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DeadChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DispatchQueue+WithFuture.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+Deprecated.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+SerialExecutor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+AssumeIsolated.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+Deprecated.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+WithEventLoop.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileDescriptor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileRegion.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/GlobalSingletons.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IO.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IOData.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IPProtocol.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerBitPacking.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerTypes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Interfaces.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Linux.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MarkedCircularBuffer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MulticastChannel.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOAny.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCloseOnErrorHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCoreSendableMetatype.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIODecodedAsyncSequence.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOLoopBound.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOPooledRecvBufferAllocator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOScheduledCallback.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSendable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSplitLinesMessageDecoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOTransportAccessibleChannelCore.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/RecvByteBufferAllocator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SingleStepByteToMessageDecoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketAddresses.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketOptionProvider.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SystemCallHelpers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TimeAmount+Duration.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TypeAssistedChannelHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/UniversalBootstrapSupport.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Utilities.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/798e24a00e793835e791fe99037f74d4 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/798e24a00e793835e791fe99037f74d4 new file mode 100644 index 0000000..0dc497a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/798e24a00e793835e791fe99037f74d4 @@ -0,0 +1,18 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/ASN1.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/BER.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1Any.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1BitString.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1Boolean.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1Identifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1Integer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1Null.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1OctetString.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ASN1Strings.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ArraySliceBigint.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/GeneralizedTime.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/ObjectIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/PEMDocument.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/TimeUtilities.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic\ ASN1\ Types/UTCTime.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/DER.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Errors.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/799c921e266b5f187089a39ab4c84a09 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/799c921e266b5f187089a39ab4c84a09 new file mode 100644 index 0000000..d8669b7 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/799c921e266b5f187089a39ab4c84a09 @@ -0,0 +1,19 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7a2c5291537b12e9ec26768e4bf69bfc b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7a2c5291537b12e9ec26768e4bf69bfc new file mode 100644 index 0000000..2bb40cb Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7a2c5291537b12e9ec26768e4bf69bfc differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7befb8b62d8f07b8fc12302c4d0a8e9e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7befb8b62d8f07b8fc12302c4d0a8e9e new file mode 100644 index 0000000..abe191b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7befb8b62d8f07b8fc12302c4d0a8e9e @@ -0,0 +1,4 @@ +module NIOPosix { +header "NIOPosix-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7c0114d0b9437be0627016910a20dc35 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7c0114d0b9437be0627016910a20dc35 new file mode 100644 index 0000000..7733ed7 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7c0114d0b9437be0627016910a20dc35 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 '-std=c++17' -fmodules -fno-cxx-modules -gmodules '-fmodule-name=CNIOBoringSSL' -fpascal-strings -Os -DSWIFT_PACKAGE -D_GNU_SOURCE '-D_POSIX_C_SOURCE=200112L' -D_DARWIN_C_SOURCE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -fvisibility-inlines-hidden -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7d995b37daed2bbc566e57c18f6b5b88 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7d995b37daed2bbc566e57c18f6b5b88 new file mode 100644 index 0000000..64a68f2 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7d995b37daed2bbc566e57c18f6b5b88 @@ -0,0 +1,4 @@ +module Crypto { +header "Crypto-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7e5c6400f09996a17ceb10f1358ad4df b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7e5c6400f09996a17ceb10f1358ad4df new file mode 100644 index 0000000..bf42249 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7e5c6400f09996a17ceb10f1358ad4df @@ -0,0 +1,21 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7e770007a87a454043e74de4dd87df9b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7e770007a87a454043e74de4dd87df9b new file mode 100644 index 0000000..18267d0 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7e770007a87a454043e74de4dd87df9b @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7f070c81533a6734bd9fedc29d436fa8 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7f070c81533a6734bd9fedc29d436fa8 new file mode 100644 index 0000000..65f9e20 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/7f070c81533a6734bd9fedc29d436fa8 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -gmodules '-fmodule-name=CNIOBoringSSL' -fpascal-strings -Os -DSWIFT_PACKAGE -D_GNU_SOURCE '-D_POSIX_C_SOURCE=200112L' -D_DARWIN_C_SOURCE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/850d7f744dff283169fd36a6d6aa36df b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/850d7f744dff283169fd36a6d6aa36df new file mode 100644 index 0000000..53c8fd5 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/850d7f744dff283169fd36a6d6aa36df @@ -0,0 +1,229 @@ +{ + "" : { + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary-emit-module.dia", + "pch" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-primary.swiftdeps" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/CertificateManager.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/GlueHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/MITMHandler.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ProxyServer.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/CURLParser.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/Constants.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/IPCManager.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager~partial.swiftmodule" + }, + "/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/WildcardMatcher.swift" : { + "const-values" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues", + "dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.d", + "diagnostics" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.dia", + "index-unit-output-path" : "/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o", + "llvm-bc" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.bc", + "object" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o", + "swift-dependencies" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftdeps", + "swiftmodule" : "/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher~partial.swiftmodule" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/85159934a4a6e83a5baab254a3e17871 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/85159934a4a6e83a5baab254a3e17871 new file mode 100644 index 0000000..9d46336 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/85159934a4a6e83a5baab254a3e17871 @@ -0,0 +1,4 @@ +module CNIOLinux { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/87ace7f71a08f07fd694f705386c6c18 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/87ace7f71a08f07fd694f705386c6c18 new file mode 100644 index 0000000..63259f0 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/87ace7f71a08f07fd694f705386c6c18 @@ -0,0 +1,61 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CBC.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CFB.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CTR.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_GCM_SIV.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/Block\ Function.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CFB_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CTR_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_GCM_SIV_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/CMAC.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC+API.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCCredential.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCEncoding.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPrecredential.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPresentation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCRequest.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCResponse.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCServer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/BoringSSL/ChaCha20CTR_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/ChaCha20CTR.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/ObjectIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8DERRepresentation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8PrivateKey.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/RFC8410AlgorithmIdentifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/BoringSSL/ECToolbox_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/ECToolbox.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/H2G/HashToField.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key\ Derivation/KDF.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key\ Derivation/PBKDF2/BoringSSL/PBKDF2_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key\ Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key\ Derivation/PBKDF2/PBKDF2.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key\ Derivation/Scrypt/BoringSSL/Scrypt_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key\ Derivation/Scrypt/Scrypt.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRF.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFClient.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFServer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRF+API.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFClient.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFServer.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/BoringSSLHelpers.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/CryptoKitErrors_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Data+Extensions.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/DigestType.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Error.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/I2OSP.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/IntegerEncoding.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PEMDocument.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PrettyBytes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/SubjectPublicKeyInfo.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadOps.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadPosix.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadSpecific.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadWindows.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/DLEQ.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Prover.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Verifier.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/ZKPToolbox.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/88e4f97c96e4e2c04d55e8d080ab17dd b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/88e4f97c96e4e2c04d55e8d080ab17dd new file mode 100644 index 0000000..d195a3f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/88e4f97c96e4e2c04d55e8d080ab17dd @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/893cb1be2d8fd5736c68484bb76b08d3 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/893cb1be2d8fd5736c68484bb76b08d3 new file mode 100644 index 0000000..768f8e8 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/893cb1be2d8fd5736c68484bb76b08d3 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8a11474d4c667b1951d7210d8d91fe89 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8a11474d4c667b1951d7210d8d91fe89 new file mode 100644 index 0000000..36efc64 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8a11474d4c667b1951d7210d8d91fe89 @@ -0,0 +1,7 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8a5b0ae08035a19835d645f16a450756 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8a5b0ae08035a19835d645f16a450756 new file mode 100644 index 0000000..d3a5e6d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8a5b0ae08035a19835d645f16a450756 @@ -0,0 +1,176 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/AndroidCABundle.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ByteBufferBIO.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/CustomPrivateKey.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/IdentityVerification.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/LinuxCABundle.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLClientHandler.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler+Configuration.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLServerHandler.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ObjectIdentifier.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PosixPort.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCallbacks.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificate.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateExtensions.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateName.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLConnection.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLContext.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLErrors.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLInit.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPKCS12Bundle.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPrivateKey.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPublicKey.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SecurityFrameworkCertificateVerification.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/String+unsafeUninitializedCapacity.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SubjectAlternativeName.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/NIOSSLSecureBytes.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/RNG.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/SafeCompare.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/Zeroization.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/TLSConfiguration.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UniversalBootstrapSupport.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UnsafeKeyAndChainTarget.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift" : { + "index-unit-output-path" : "/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8bba4233626f64a7ea772bb94a08a1a9 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8bba4233626f64a7ea772bb94a08a1a9 new file mode 100644 index 0000000..ee59dbc --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8bba4233626f64a7ea772bb94a08a1a9 @@ -0,0 +1 @@ +{"case-sensitive":"false","roots":[],"version":0} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8bdc7d732ad7aaa16d334a1cf42415b6 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8bdc7d732ad7aaa16d334a1cf42415b6 new file mode 100644 index 0000000..5186d6b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8bdc7d732ad7aaa16d334a1cf42415b6 @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c5a5d451c176ed7f3906180108d6d2f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c5a5d451c176ed7f3906180108d6d2f new file mode 100644 index 0000000..1400585 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c5a5d451c176ed7f3906180108d6d2f @@ -0,0 +1,19 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/OptionalRawRepresentable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/RawRepresentable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/AtomicBool.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/IntegerConformances.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/PointerConformances.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Primitives/autogenerated/Primitives.native.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicInteger.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicOptionalWrappable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicReference.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicStorage.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicValue.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/AtomicMemoryOrderings.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/DoubleWord.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomic.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomicLazyReference.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomic.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomicLazyReference.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/autogenerated/IntegerOperations.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Unmanaged\ extensions.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c93571842db63157bcbbc02b6124d48 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c93571842db63157bcbbc02b6124d48 new file mode 100644 index 0000000..a1c9722 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c93571842db63157bcbbc02b6124d48 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c99f8e8e3c52b1b74faa6a1a9c201e0 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c99f8e8e3c52b1b74faa6a1a9c201e0 new file mode 100644 index 0000000..c3c744c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8c99f8e8e3c52b1b74faa6a1a9c201e0 @@ -0,0 +1,17 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/ByteCollectionUtils.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPDecoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPEncoder.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaderValidator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaders+Validation.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPPipelineSetup.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerPipelineHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerProtocolErrorHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerUpgradeHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypedPipelineSetup.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypes.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPClientUpgradeHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPObjectAggregator.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgradeHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgraderStateMachine.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgradeHandler.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgraderStateMachine.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8cee6f2329183dd6ccee0109f7417c50 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8cee6f2329183dd6ccee0109f7417c50 new file mode 100644 index 0000000..0547f37 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8cee6f2329183dd6ccee0109f7417c50 @@ -0,0 +1,58 @@ +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o +/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8d16ba5f2a8191de7c1cda719878d5ae b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8d16ba5f2a8191de7c1cda719878d5ae new file mode 100644 index 0000000..8ed5d09 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8d16ba5f2a8191de7c1cda719878d5ae @@ -0,0 +1,8 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/AEAD/BoringSSLAEAD.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/CryptoKitErrors_boring.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurve.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurvePoint.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/ArbitraryPrecisionInteger.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/FiniteFieldArithmeticContext.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/RandomBytes.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8de91b6f338a1d7250d3c9eaca52d4b7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8de91b6f338a1d7250d3c9eaca52d4b7 new file mode 100644 index 0000000..328d98d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8de91b6f338a1d7250d3c9eaca52d4b7 @@ -0,0 +1,4 @@ +framework module ProxyCore { + header "ProxyCore-Swift.h" + requires objc +} diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8e0523e93b121b4d7f02ffeaa865b3e7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8e0523e93b121b4d7f02ffeaa865b3e7 new file mode 100644 index 0000000..2b5d401 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/8e0523e93b121b4d7f02ffeaa865b3e7 @@ -0,0 +1,36 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/90c972d762a2e5ba6e06754544b38a79 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/90c972d762a2e5ba6e06754544b38a79 new file mode 100644 index 0000000..cd4ec8b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/90c972d762a2e5ba6e06754544b38a79 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/926f1bb46242748c24e3a6225eb2748b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/926f1bb46242748c24e3a6225eb2748b new file mode 100644 index 0000000..3b893f5 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/926f1bb46242748c24e3a6225eb2748b @@ -0,0 +1 @@ +-target arm64-apple-ios17.0 '-std=gnu11' -fmodules -gmodules '-fmodule-name=ProxyCore' -fpascal-strings -O0 -fno-common '-DDEBUG=1' -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -iquote /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap -ivfsoverlay /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml -iquote /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -I/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/include -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources-normal/arm64 -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/arm64 -I/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks -F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos '-fmodule-map-file=/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/Sources/GRDBSQLite/module.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIO.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/X509.modulemap' '-fmodule-map-file=/Users/treyt/Desktop/code/proxy_ios/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap' \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9283a0ef06c23a751fc317d607db8317 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9283a0ef06c23a751fc317d607db8317 new file mode 100644 index 0000000..dea5363 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9283a0ef06c23a751fc317d607db8317 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOLinux' -fpascal-strings -Os -DSWIFT_PACKAGE -D_GNU_SOURCE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/94bdf9ffdf583c436134426aef806818 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/94bdf9ffdf583c436134426aef806818 new file mode 100644 index 0000000..083e270 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/94bdf9ffdf583c436134426aef806818 @@ -0,0 +1,6 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/96678ecee0af1de2053d46bbd8388239 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/96678ecee0af1de2053d46bbd8388239 new file mode 100644 index 0000000..e059707 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/96678ecee0af1de2053d46bbd8388239 @@ -0,0 +1,4 @@ +module CNIOLLHTTP { +umbrella header "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/include/CNIOLLHTTP.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9772930e5434bc45245c79da10290b80 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9772930e5434bc45245c79da10290b80 new file mode 100644 index 0000000..ab4c791 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9772930e5434bc45245c79da10290b80 @@ -0,0 +1,15 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/986e6d2b62abd966b4a599e67e082799 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/986e6d2b62abd966b4a599e67e082799 new file mode 100644 index 0000000..3f37f5b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/986e6d2b62abd966b4a599e67e082799 @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9886b69de76fa7ce872c0ab7db6debeb b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9886b69de76fa7ce872c0ab7db6debeb new file mode 100644 index 0000000..596c18d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9886b69de76fa7ce872c0ab7db6debeb @@ -0,0 +1,61 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9ab19579eed76bd653787b55989c9ed6 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9ab19579eed76bd653787b55989c9ed6 new file mode 100644 index 0000000..5594f70 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9ab19579eed76bd653787b55989c9ed6 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b35be8a81fc3ab3b9327a944c4f852f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b35be8a81fc3ab3b9327a944c4f852f new file mode 100644 index 0000000..1d1d45a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b35be8a81fc3ab3b9327a944c4f852f @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIODarwin' -fpascal-strings -Os -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b49c5009ff392be6bdc0396c8518b8b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b49c5009ff392be6bdc0396c8518b8b new file mode 100644 index 0000000..a9834c8 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b49c5009ff392be6bdc0396c8518b8b @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b6a87391ca203ff6c45652ca17e5bf7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b6a87391ca203ff6c45652ca17e5bf7 new file mode 100644 index 0000000..326036f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9b6a87391ca203ff6c45652ca17e5bf7 @@ -0,0 +1,367 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9d5e894209dd52155d033365eb6bd29f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9d5e894209dd52155d033365eb6bd29f new file mode 100644 index 0000000..209ab50 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/9d5e894209dd52155d033365eb6bd29f @@ -0,0 +1,19 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a17bb9c1f245703cf858a11605724bcc b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a17bb9c1f245703cf858a11605724bcc new file mode 100644 index 0000000..2331924 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a17bb9c1f245703cf858a11605724bcc @@ -0,0 +1,44 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a1b8c69b882d65899c96edfb94ef56d5 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a1b8c69b882d65899c96edfb94ef56d5 new file mode 100644 index 0000000..38b0a3f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a1b8c69b882d65899c96edfb94ef56d5 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a302bf1a6524f1e678c04e562c8ea1e4 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a302bf1a6524f1e678c04e562c8ea1e4 new file mode 100644 index 0000000..0395d7c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a302bf1a6524f1e678c04e562c8ea1e4 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a59552b17a64e6cc85aca6bbf71e5eab b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a59552b17a64e6cc85aca6bbf71e5eab new file mode 100644 index 0000000..1f1fba2 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a59552b17a64e6cc85aca6bbf71e5eab @@ -0,0 +1,6 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOAtomic.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLock.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLockedValueBox.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOThreadPoolWorkAvailable.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a7c11a5e0255baeb3cb216c9e95ccc57 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a7c11a5e0255baeb3cb216c9e95ccc57 new file mode 100644 index 0000000..02d895a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a7c11a5e0255baeb3cb216c9e95ccc57 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOLLHTTP' -fpascal-strings -Os -DSWIFT_PACKAGE -D_GNU_SOURCE -DLLHTTP_STRICT_MODE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a8837f06a943a4dcbf0c27d851e8b1b6 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a8837f06a943a4dcbf0c27d851e8b1b6 new file mode 100644 index 0000000..b8e18a4 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/a8837f06a943a4dcbf0c27d851e8b1b6 @@ -0,0 +1 @@ +["AppIntent","EntityQuery","AppEntity","TransientEntity","AppEnum","AppShortcutProviding","AppShortcutsProvider","AnyResolverProviding","AppIntentsPackage","DynamicOptionsProvider","_IntentValueRepresentable","_AssistantIntentsProvider","_GenerativeFunctionExtractable","IntentValueQuery","Resolver","AppExtension","ExtensionPointDefining"] \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/af1da544d5856c7f90fb163690522b98 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/af1da544d5856c7f90fb163690522b98 new file mode 100644 index 0000000..f148d73 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/af1da544d5856c7f90fb163690522b98 @@ -0,0 +1,16 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIOBase64/Base64.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/affaa314cbbbe3a264e9d832f7bed4dc b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/affaa314cbbbe3a264e9d832f7bed4dc new file mode 100644 index 0000000..1c5ea0c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/affaa314cbbbe3a264e9d832f7bed4dc @@ -0,0 +1,51 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/AEAD/BoringSSLAEAD.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/CryptoKitErrors_boring.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurve.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurvePoint.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/ArbitraryPrecisionInteger.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/FiniteFieldArithmeticContext.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/RandomBytes.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift" : { + "index-unit-output-path" : "/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b04704ee1632d5d241d545cf62e82f3c b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b04704ee1632d5d241d545cf62e82f3c new file mode 100644 index 0000000..ae38068 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b04704ee1632d5d241d545cf62e82f3c @@ -0,0 +1,399 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b363b93794f2142bf9d645959e95d761 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b363b93794f2142bf9d645959e95d761 new file mode 100644 index 0000000..8bf5180 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b363b93794f2142bf9d645959e95d761 @@ -0,0 +1,4 @@ +module NIO { +header "NIO-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b70d5a4d9cb98f0dccefe7b8e3639e5f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b70d5a4d9cb98f0dccefe7b8e3639e5f new file mode 100644 index 0000000..a56813b --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b70d5a4d9cb98f0dccefe7b8e3639e5f @@ -0,0 +1,4 @@ +module NIOSSL { +header "NIOSSL-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b9033adfe655ae8d04d00ed6179a8395 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b9033adfe655ae8d04d00ed6179a8395 new file mode 100644 index 0000000..2d985c0 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/b9033adfe655ae8d04d00ed6179a8395 differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ba1f3fcc3bde972b36303b72d47cc333 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ba1f3fcc3bde972b36303b72d47cc333 new file mode 100644 index 0000000..b4361ee --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ba1f3fcc3bde972b36303b72d47cc333 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bb42f1224704bb6715e3f429c4f1e4eb b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bb42f1224704bb6715e3f429c4f1e4eb new file mode 100644 index 0000000..011bda4 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bb42f1224704bb6715e3f429c4f1e4eb @@ -0,0 +1,4 @@ +module DequeModule { +header "DequeModule-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bd37ceb8457be7c5d5321c5cb027027e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bd37ceb8457be7c5d5321c5cb027027e new file mode 100644 index 0000000..4f048ad --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bd37ceb8457be7c5d5321c5cb027027e @@ -0,0 +1,14 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/be007f7a3f124401c8ccf1e5bb79d7b7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/be007f7a3f124401c8ccf1e5bb79d7b7 new file mode 100644 index 0000000..3c10c54 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/be007f7a3f124401c8ccf1e5bb79d7b7 @@ -0,0 +1,46 @@ +import class Foundation.Bundle +import class Foundation.ProcessInfo +import struct Foundation.URL + +private class BundleFinder {} + +extension Foundation.Bundle { + /// Returns the resource bundle associated with the current Swift module. + static let module: Bundle = { + let bundleName = "swift-nio-ssl_NIOSSL" + + let overrides: [URL] + #if DEBUG + // The 'PACKAGE_RESOURCE_BUNDLE_PATH' name is preferred since the expected value is a path. The + // check for 'PACKAGE_RESOURCE_BUNDLE_URL' will be removed when all clients have switched over. + // This removal is tracked by rdar://107766372. + if let override = ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_PATH"] + ?? ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_URL"] { + overrides = [URL(fileURLWithPath: override)] + } else { + overrides = [] + } + #else + overrides = [] + #endif + + let candidates = overrides + [ + // Bundle should be present here when the package is linked into an App. + Bundle.main.resourceURL, + + // Bundle should be present here when the package is linked into a framework. + Bundle(for: BundleFinder.self).resourceURL, + + // For command-line tools. + Bundle.main.bundleURL, + ] + + for candidate in candidates { + let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle") + if let bundle = bundlePath.flatMap(Bundle.init(url:)) { + return bundle + } + } + fatalError("unable to find bundle named swift-nio-ssl_NIOSSL") + }() +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/be79674789df1f2bbc397a08bb4d857f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/be79674789df1f2bbc397a08bb4d857f new file mode 100644 index 0000000..2bc26dc --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/be79674789df1f2bbc397a08bb4d857f @@ -0,0 +1,33 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bef3a5e987e0b5f81573f522a680f0e7 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bef3a5e987e0b5f81573f522a680f0e7 new file mode 100644 index 0000000..e7cdf27 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bef3a5e987e0b5f81573f522a680f0e7 differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bf2db660e021b0fe8678fc255434a19c b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bf2db660e021b0fe8678fc255434a19c new file mode 100644 index 0000000..bfd65a9 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bf2db660e021b0fe8678fc255434a19c @@ -0,0 +1,4 @@ +module GRDB { +header "GRDB-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bff0166bec44212dea9b050c8719cc81 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bff0166bec44212dea9b050c8719cc81 new file mode 100644 index 0000000..e9ac217 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/bff0166bec44212dea9b050c8719cc81 @@ -0,0 +1,20 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c104763bf3c84d981190f3e619ec9c88 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c104763bf3c84d981190f3e619ec9c88 new file mode 100644 index 0000000..0d74aac --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c104763bf3c84d981190f3e619ec9c88 @@ -0,0 +1,26 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingEventLoop.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/Embedded.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c380496804c07c7aa2d0346da01cc65e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c380496804c07c7aa2d0346da01cc65e new file mode 100644 index 0000000..5e271b0 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c380496804c07c7aa2d0346da01cc65e @@ -0,0 +1,5 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c390e78fd15f0d9b5df9fa9e43c386cf b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c390e78fd15f0d9b5df9fa9e43c386cf new file mode 100644 index 0000000..e13b5de --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c390e78fd15f0d9b5df9fa9e43c386cf @@ -0,0 +1,5 @@ + extern const unsigned char ProxyCoreVersionString[]; + extern const double ProxyCoreVersionNumber; + + const unsigned char ProxyCoreVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:ProxyCore PROJECT:ProxyApp-1" "\n"; + const double ProxyCoreVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c52e0c7a5fdb1b2741ebe7403aaf27db b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c52e0c7a5fdb1b2741ebe7403aaf27db new file mode 100644 index 0000000..6bfa8a3 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c52e0c7a5fdb1b2741ebe7403aaf27db @@ -0,0 +1,106 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugInboundEventsHandler.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugOutboundEventsHandler.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/FixedLengthFrameDecoder.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/HTTP1ProxyConnectHandler.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming+ContentLengthHeader.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldBasedFrameDecoder.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldPrepender.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LineBasedFrameDecoder.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/MarkedCircularBuffer+PopFirstCheckMarked.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOExtrasError.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOLengthFieldBitLength.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIORequestIdentifiable.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/PCAPRingBuffer.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/QuiescingHelper.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandler.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandlers+State.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseWithIDHandler.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/WritePCAPHandler.swift" : { + "index-unit-output-path" : "/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c7dc283b84c0b6ba2b8e8d6de9f30a1f b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c7dc283b84c0b6ba2b8e8d6de9f30a1f new file mode 100644 index 0000000..8bd2135 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c7dc283b84c0b6ba2b8e8d6de9f30a1f @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOOpenBSD' -fpascal-strings -Os -DSWIFT_PACKAGE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c8b6fc81f3fae0623ab60c0f2b836256 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c8b6fc81f3fae0623ab60c0f2b836256 new file mode 100644 index 0000000..0afe5b2 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c8b6fc81f3fae0623ab60c0f2b836256 @@ -0,0 +1,18 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c91403e9f118affbc68ba97f73a8bc40 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c91403e9f118affbc68ba97f73a8bc40 new file mode 100644 index 0000000..7f63dd6 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/c91403e9f118affbc68ba97f73a8bc40 @@ -0,0 +1,46 @@ +import class Foundation.Bundle +import class Foundation.ProcessInfo +import struct Foundation.URL + +private class BundleFinder {} + +extension Foundation.Bundle { + /// Returns the resource bundle associated with the current Swift module. + static let module: Bundle = { + let bundleName = "swift-crypto__CryptoExtras" + + let overrides: [URL] + #if DEBUG + // The 'PACKAGE_RESOURCE_BUNDLE_PATH' name is preferred since the expected value is a path. The + // check for 'PACKAGE_RESOURCE_BUNDLE_URL' will be removed when all clients have switched over. + // This removal is tracked by rdar://107766372. + if let override = ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_PATH"] + ?? ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_URL"] { + overrides = [URL(fileURLWithPath: override)] + } else { + overrides = [] + } + #else + overrides = [] + #endif + + let candidates = overrides + [ + // Bundle should be present here when the package is linked into an App. + Bundle.main.resourceURL, + + // Bundle should be present here when the package is linked into a framework. + Bundle(for: BundleFinder.self).resourceURL, + + // For command-line tools. + Bundle.main.bundleURL, + ] + + for candidate in candidates { + let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle") + if let bundle = bundlePath.flatMap(Bundle.init(url:)) { + return bundle + } + } + fatalError("unable to find bundle named swift-crypto__CryptoExtras") + }() +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/cdb7dadfa453139d756237664f702797 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/cdb7dadfa453139d756237664f702797 new file mode 100644 index 0000000..c4c398d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/cdb7dadfa453139d756237664f702797 @@ -0,0 +1,41 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOAtomic.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLock.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLockedValueBox.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOThreadPoolWorkAvailable.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift" : { + "index-unit-output-path" : "/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ceea9a4a72a40dcf4a34b11a2c8c9717 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ceea9a4a72a40dcf4a34b11a2c8c9717 new file mode 100644 index 0000000..4654fc4 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ceea9a4a72a40dcf4a34b11a2c8c9717 @@ -0,0 +1,3 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d01dacea15895c7c84096cfff3c491eb b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d01dacea15895c7c84096cfff3c491eb new file mode 100644 index 0000000..a7ca9a5 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d01dacea15895c7c84096cfff3c491eb @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d0ef311f18e8e410063bb5db77e51508 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d0ef311f18e8e410063bb5db77e51508 new file mode 100644 index 0000000..942fb2e --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d0ef311f18e8e410063bb5db77e51508 @@ -0,0 +1,46 @@ +import class Foundation.Bundle +import class Foundation.ProcessInfo +import struct Foundation.URL + +private class BundleFinder {} + +extension Foundation.Bundle { + /// Returns the resource bundle associated with the current Swift module. + static let module: Bundle = { + let bundleName = "swift-crypto_CryptoBoringWrapper" + + let overrides: [URL] + #if DEBUG + // The 'PACKAGE_RESOURCE_BUNDLE_PATH' name is preferred since the expected value is a path. The + // check for 'PACKAGE_RESOURCE_BUNDLE_URL' will be removed when all clients have switched over. + // This removal is tracked by rdar://107766372. + if let override = ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_PATH"] + ?? ProcessInfo.processInfo.environment["PACKAGE_RESOURCE_BUNDLE_URL"] { + overrides = [URL(fileURLWithPath: override)] + } else { + overrides = [] + } + #else + overrides = [] + #endif + + let candidates = overrides + [ + // Bundle should be present here when the package is linked into an App. + Bundle.main.resourceURL, + + // Bundle should be present here when the package is linked into a framework. + Bundle(for: BundleFinder.self).resourceURL, + + // For command-line tools. + Bundle.main.bundleURL, + ] + + for candidate in candidates { + let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle") + if let bundle = bundlePath.flatMap(Bundle.init(url:)) { + return bundle + } + } + fatalError("unable to find bundle named swift-crypto_CryptoBoringWrapper") + }() +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d1999c19201bcf5dad6ab22a7bcdbfed b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d1999c19201bcf5dad6ab22a7bcdbfed new file mode 100644 index 0000000..39774c0 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d1999c19201bcf5dad6ab22a7bcdbfed @@ -0,0 +1,106 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Debugging.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Descriptions.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/FixedWidthInteger+roundUpToPowerOfTwo.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/Integer rank.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+first and last set bit.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+reversed.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/LifetimeOverride.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/RandomAccessCollection+Offsets.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Span+Extras.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/String+Padding.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+Index.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+_Word.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBufferPointer+Extras.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableBufferPointer+Extras.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableRawBufferPointer+Extras.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeRawBufferPointer+Extras.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_SortedCollection.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_UniqueCollection.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d316e8c62476ad7074be3af42947cf7e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d316e8c62476ad7074be3af42947cf7e new file mode 100644 index 0000000..b91242f --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d316e8c62476ad7074be3af42947cf7e @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d36065d577524716bfe7e8baf482523e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d36065d577524716bfe7e8baf482523e new file mode 100644 index 0000000..3968446 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d36065d577524716bfe7e8baf482523e @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d41d8cd98f00b204e9800998ecf8427e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d41d8cd98f00b204e9800998ecf8427e new file mode 100644 index 0000000..e69de29 diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d43fbd994880a6d7c5fa21f9e5a9e042 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d43fbd994880a6d7c5fa21f9e5a9e042 new file mode 100644 index 0000000..9b46c94 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d43fbd994880a6d7c5fa21f9e5a9e042 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -gmodules '-fmodule-name=CCryptoBoringSSL' -fpascal-strings -Os -DSWIFT_PACKAGE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d5a9bce3642eb99270dce723c7c81f13 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d5a9bce3642eb99270dce723c7c81f13 new file mode 100644 index 0000000..8a714ab --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d5a9bce3642eb99270dce723c7c81f13 @@ -0,0 +1,231 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Codable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Collection.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+CustomReflectable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Descriptions.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Equatable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+ExpressibleByArrayLiteral.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Extras.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Hashable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Testing.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._Storage.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._UnsafeHandle.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBuffer.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBufferHeader.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Append.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Consumption.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Container.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Descriptions.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Equatable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Experimental.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Hashable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Initializers.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Insertions.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Prepend.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Removals.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Replacements.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Testing.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Append.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Consumption.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Container.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Descriptions.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Equatable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Experimental.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Hashable.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Initializers.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Insertions.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Prepend.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Removals.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Replacements.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_DequeSlot.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeHandle.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeSegments.swift" : { + "index-unit-output-path" : "/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d73b81de943b8be353e4b1b109233468 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d73b81de943b8be353e4b1b109233468 new file mode 100644 index 0000000..af4bc19 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d73b81de943b8be353e4b1b109233468 differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d7e10ce6c9083feb89e915d4c264f2be b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d7e10ce6c9083feb89e915d4c264f2be new file mode 100644 index 0000000..9dd1343 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d7e10ce6c9083feb89e915d4c264f2be differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d947869624940c2b1013218e33d11551 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d947869624940c2b1013218e33d11551 new file mode 100644 index 0000000..f56fbeb --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/d947869624940c2b1013218e33d11551 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/db2f5f86974f43133d3a63a86b4d9016 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/db2f5f86974f43133d3a63a86b4d9016 new file mode 100644 index 0000000..18328c8 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/db2f5f86974f43133d3a63a86b4d9016 @@ -0,0 +1,3 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/dc8da71781fbbae107a7a3cff1fa9b75 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/dc8da71781fbbae107a7a3cff1fa9b75 new file mode 100644 index 0000000..a922974 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/dc8da71781fbbae107a7a3cff1fa9b75 @@ -0,0 +1,22 @@ +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/CURLParser.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/CertificateManager.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/Constants.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/GlueHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/IPCManager.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/MITMHandler.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ProxyServer.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift +/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/WildcardMatcher.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/dd3430cc1434d431600c78c9f94b0068 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/dd3430cc1434d431600c78c9f94b0068 new file mode 100644 index 0000000..6eb019c --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/dd3430cc1434d431600c78c9f94b0068 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e15859d072553701afcece1716abdbf5 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e15859d072553701afcece1716abdbf5 new file mode 100644 index 0000000..f448e28 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e15859d072553701afcece1716abdbf5 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e39205d4ecb3894da6c93ababe37de38 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e39205d4ecb3894da6c93ababe37de38 new file mode 100644 index 0000000..5bb4e2a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e39205d4ecb3894da6c93ababe37de38 @@ -0,0 +1,9 @@ +#import + +__BEGIN_DECLS + +NSBundle* swift_crypto_CCryptoBoringSSLShims_SWIFTPM_MODULE_BUNDLE(void); + +#define SWIFTPM_MODULE_BUNDLE swift_crypto_CCryptoBoringSSLShims_SWIFTPM_MODULE_BUNDLE() + +__END_DECLS \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e3a862064462182446a6493b596fedc3 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e3a862064462182446a6493b596fedc3 new file mode 100644 index 0000000..c1e2b25 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e3a862064462182446a6493b596fedc3 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fobjc-arc -fmodules -gmodules '-fmodule-name=CCryptoBoringSSL' -fpascal-strings -Os -DSWIFT_PACKAGE '-DOBJC_OLD_DISPATCH_PROTOTYPES=1' -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e4dba7e7bd41baf69be075113faaa2e8 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e4dba7e7bd41baf69be075113faaa2e8 new file mode 100644 index 0000000..23b3e6d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e4dba7e7bd41baf69be075113faaa2e8 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=CNIOWASI' -fpascal-strings -Os -DSWIFT_PACKAGE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e665bb1ab8cd0154732fe37c3a6740a5 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e665bb1ab8cd0154732fe37c3a6740a5 new file mode 100644 index 0000000..cd665ca --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e665bb1ab8cd0154732fe37c3a6740a5 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fmodules -gmodules '-fmodule-name=_AtomicsShims' -fpascal-strings -Os -DSWIFT_PACKAGE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e7a6a9680ea64a7ce2f6e6d1ce6d640c b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e7a6a9680ea64a7ce2f6e6d1ce6d640c new file mode 100644 index 0000000..5457feb --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e7a6a9680ea64a7ce2f6e6d1ce6d640c @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 -fobjc-arc -fmodules -gmodules '-fmodule-name=CCryptoBoringSSLShims' -fpascal-strings -Os -DSWIFT_PACKAGE '-DOBJC_OLD_DISPATCH_PROTOTYPES=1' -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e92aa040348ea6ef9182abcac5c3700b b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e92aa040348ea6ef9182abcac5c3700b new file mode 100644 index 0000000..ce88667 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/e92aa040348ea6ef9182abcac5c3700b @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ea928dd2550edf2c76750f5c92ef206d b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ea928dd2550edf2c76750f5c92ef206d new file mode 100644 index 0000000..224a978 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ea928dd2550edf2c76750f5c92ef206d @@ -0,0 +1,3 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/Heap.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/PriorityQueue.swift +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/_TinyArray.swift diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ed588751faed09c429d854739a1ae189 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ed588751faed09c429d854739a1ae189 new file mode 100644 index 0000000..2758a53 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ed588751faed09c429d854739a1ae189 @@ -0,0 +1,4 @@ +module _NIODataStructures { +header "_NIODataStructures-Swift.h" +export * +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ed74c6dccb753c24e8376a4cc085bd12 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ed74c6dccb753c24e8376a4cc085bd12 new file mode 100644 index 0000000..560b0df --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ed74c6dccb753c24e8376a4cc085bd12 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/efd4028fc5abc7f65934940132266250 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/efd4028fc5abc7f65934940132266250 new file mode 100644 index 0000000..06d1778 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/efd4028fc5abc7f65934940132266250 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/efdcf87b954454aa49fb24d5798928c3 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/efdcf87b954454aa49fb24d5798928c3 new file mode 100644 index 0000000..18a7805 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/efdcf87b954454aa49fb24d5798928c3 @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f19295582a88c9a82f3698557091ad0e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f19295582a88c9a82f3698557091ad0e new file mode 100644 index 0000000..d4831b3 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f19295582a88c9a82f3698557091ad0e @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f44a4e246225af24dbe9348c15e7e935 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f44a4e246225af24dbe9348c15e7e935 new file mode 100644 index 0000000..ffc0c04 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f44a4e246225af24dbe9348c15e7e935 @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f62d702c90e8fa8452f329f0efeacb4e b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f62d702c90e8fa8452f329f0efeacb4e new file mode 100644 index 0000000..efe48f3 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f62d702c90e8fa8452f329f0efeacb4e @@ -0,0 +1,19 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f8a54221dc0e0dc5e4ec0e046ff2707d b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f8a54221dc0e0dc5e4ec0e046ff2707d new file mode 100644 index 0000000..8fb33b2 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f8a54221dc0e0dc5e4ec0e046ff2707d @@ -0,0 +1,551 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttribute.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttributes.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRVersion.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificateSigningRequest.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificationRequestInfo.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/ExtensionRequest.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Certificate.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePrivateKey.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePublicKey.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateSerialNumber.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateVersion.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSAttribute.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSContentInfo.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSEncapsulatedContentInfo.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSIssuerAndSerialNumber.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSOperations.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignature.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignedData.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerIdentifier.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerInfo.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSVersion.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Curve25519+DER.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CustomPrivateKey.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Digests.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CommonName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CountryName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DNBuilder.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DomainComponent.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/EmailAddress.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/LocalityName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationalUnitName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StateOrProvinceName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StreetAddress.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Error.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityInformationAccess.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityKeyIdentifier.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/BasicConstraints.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtendedKeyUsage.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtensionIdentifiers.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/KeyUsage.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/NameConstraints.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectAlternativeName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectKeyIdentifier.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extensions.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/ExtensionsBuilder.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/GeneralName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Lock.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/LockedValueBox.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/BasicOCSPResponse.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/DirectoryString.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertID.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertStatus.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPExtensionID.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPNonce.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPRequest.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponse.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseBytes.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseData.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseStatus.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSignature.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleRequest.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleResponse.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPTBSRequest.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPVersion.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PKCS8PrivateKey.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PromiseAndFuture.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RDNAttribute.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RandomNumberGenerator+bytes.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RelativeDistinguishedName.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SEC1PrivateKey.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SecKeyWrapper.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Signature.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SignatureAlgorithm.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AllOfPolicies.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AnyPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CertificateStore.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CustomCertificateStore.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/OneOfPolicies.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/PolicyBuilder.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/BasicConstraintsPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DNSNames.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DirectoryNames.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/ExpiryPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/IPConstraints.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/NameConstraintsPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/RFC5280Policy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/URIConstraints.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/VersionPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ServerIdentityPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/TrustRootLoading.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/UnverifiedChain.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ValidatedCertificateChain.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerificationDiagnostic.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/Verifier.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerifierPolicy.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/AlgorithmIdentifier.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/ECDSASignature.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/RSAPKCS1PublicKey.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/SubjectPublicKeyInfo.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TBSCertificate.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Time.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TimeCalculations.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Validity.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509SendableMetatype.swift" : { + "index-unit-output-path" : "/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f9410f29e8fb7fdd256cafd3b1c39c86 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f9410f29e8fb7fdd256cafd3b1c39c86 new file mode 100644 index 0000000..9a9718a --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/f9410f29e8fb7fdd256cafd3b1c39c86 @@ -0,0 +1 @@ +-target arm64-apple-ios12.0 '-std=c++17' -fmodules -fno-cxx-modules -gmodules '-fmodule-name=CCryptoBoringSSL' -fpascal-strings -Os -DSWIFT_PACKAGE -isysroot /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk -g -fvisibility-inlines-hidden -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources-normal/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/arm64 -I/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources -F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks -DXcode \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fa76b3bb6ba32edf5b92bd7f11061292 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fa76b3bb6ba32edf5b92bd7f11061292 new file mode 100644 index 0000000..deb5cbc --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fa76b3bb6ba32edf5b92bd7f11061292 @@ -0,0 +1,101 @@ +{ + "" : { + "const-values" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues", + "dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.d", + "diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.dia", + "emit-module-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary-emit-module.d", + "emit-module-diagnostics" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary-emit-module.dia", + "pch" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary-Bridging-header.pch", + "swift-dependencies" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftdeps" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/ASN1.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/BER.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Any.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1BitString.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Boolean.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Identifier.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Integer.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Null.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1OctetString.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Strings.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ArraySliceBigint.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/GeneralizedTime.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ObjectIdentifier.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/PEMDocument.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/TimeUtilities.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/UTCTime.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/DER.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o" + }, + "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Errors.swift" : { + "index-unit-output-path" : "/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o", + "llvm-bc" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.bc", + "object" : "/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o" + } +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fac6fe27ac61129fdc548ccee5c36ad3 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fac6fe27ac61129fdc548ccee5c36ad3 new file mode 100644 index 0000000..ed71f9e --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fac6fe27ac61129fdc548ccee5c36ad3 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd71dfb156a7dbdfbc304ad6b2d7579d b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd71dfb156a7dbdfbc304ad6b2d7579d new file mode 100644 index 0000000..728ac7d --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd71dfb156a7dbdfbc304ad6b2d7579d @@ -0,0 +1,2 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd8314defc70a8778956f026c0ddfd19 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd8314defc70a8778956f026c0ddfd19 new file mode 100644 index 0000000..dd8b535 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd8314defc70a8778956f026c0ddfd19 differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd8d27ff0b96ba97c8c4a06ae44549e8 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd8d27ff0b96ba97c8c4a06ae44549e8 new file mode 100644 index 0000000..9af2f24 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fd8d27ff0b96ba97c8c4a06ae44549e8 @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fe594febb220545e52b82ab37b3793ca b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fe594febb220545e52b82ab37b3793ca new file mode 100644 index 0000000..b6b0665 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/fe594febb220545e52b82ab37b3793ca @@ -0,0 +1 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ffbc71edcaa04859867268d700d8d158 b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ffbc71edcaa04859867268d700d8d158 new file mode 100644 index 0000000..23d4816 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/attachments/ffbc71edcaa04859867268d700d8d158 @@ -0,0 +1,22 @@ +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents/Metadata.appintents/extract.actionsdata +/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents/Metadata.appintents/extract.actionsdata diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/build-request.json b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/build-request.json new file mode 100644 index 0000000..74a5e20 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/build-request.json @@ -0,0 +1,42 @@ +{ + "buildCommand" : { + "command" : "build", + "skipDependencies" : false, + "style" : "buildAndRun" + }, + "configuredTargets" : [ + { + "guid" : "51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682" + } + ], + "containerPath" : "/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj", + "continueBuildingAfterErrors" : false, + "dependencyScope" : "workspace", + "enableIndexBuildArena" : false, + "hideShellScriptEnvironment" : false, + "parameters" : { + "action" : "build", + "overrides" : { + "commandLine" : { + "table" : { + "CODE_SIGN_IDENTITY" : "", + "CODE_SIGNING_ALLOWED" : "NO", + "CODE_SIGNING_REQUIRED" : "NO" + } + }, + "synthesized" : { + "table" : { + "ACTION" : "build", + "ENABLE_PREVIEWS" : "NO", + "ENABLE_XOJIT_PREVIEWS" : "NO", + "TOOLCHAINS" : "com.apple.dt.toolchain.Metal.32023.864 $(inherited)" + } + } + } + }, + "showNonLoggedProgress" : true, + "useDryRun" : false, + "useImplicitDependencies" : false, + "useLegacyBuildLocations" : false, + "useParallelTargets" : true +} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/description.msgpack b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/description.msgpack new file mode 100644 index 0000000..223dc1a Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/description.msgpack differ diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/manifest.json b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/manifest.json new file mode 100644 index 0000000..bcc54ee --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/manifest.json @@ -0,0 +1 @@ +{"client":{"name":"basic","version":0,"file-system":"device-agnostic","perform-ownership-analysis":"no"},"targets":{"":[""]},"nodes":{"/Users/treyt/Desktop/code/proxy_ios/build":{"is-mutated":true},"/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos":{"is-mutated":true},"/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos":{"is-mutated":true},"/Users/treyt/Desktop/code/proxy_ios/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Desktop/code/proxy_ios/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/SwiftExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/ExplicitPrecompiledModules":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks":{"is-mutated":true},"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/SwiftExplicitPrecompiledModules":{"is-mutated":true}},"commands":{"":{"tool":"phony","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers","/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos","/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos/ProxyCore.framework/ProxyCore.tbd","/Users/treyt/Desktop/code/proxy_ios/build/ExplicitPrecompiledModules","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Desktop/code/proxy_ios/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/PackageFrameworks","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/PackageFrameworks","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/ExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/SwiftExplicitPrecompiledModules","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json"],"roots":["/tmp/swift-atomics.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList"],"roots":["/tmp/swift-nio-ssl.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList"],"roots":["/tmp/swift-nio-ssl.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json"],"roots":["/tmp/swift-collections.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json"],"roots":["/tmp/swift-collections.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json"],"roots":["/tmp/GRDB.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist"],"roots":["/tmp/GRDB.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json"],"roots":["/tmp/swift-collections.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json"],"roots":["/tmp/swift-nio-extras.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json"],"roots":["/tmp/swift-nio-ssl.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos/ProxyCore.framework/ProxyCore.tbd","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o.scan","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_lto.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap"],"roots":["/tmp/ProxyApp.dst","/Users/treyt/Desktop/code/proxy_ios/build","/Users/treyt/Desktop/code/proxy_ios/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap"],"roots":["/tmp/swift-asn1.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap"],"roots":["/tmp/swift-certificates.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-atomics.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap"],"roots":["/tmp/swift-certificates.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-crypto.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-nio-ssl.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/PrivacyInfo.xcprivacy","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyStaticMetadataFileList"],"roots":["/tmp/swift-nio.dst","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":[""]},"":{"tool":"stale-file-removal","expectedOutputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml"],"outputs":[""]},"P0:::ClangStatCache /Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk /var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache":{"tool":"shell","description":"ClangStatCache /Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk /var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","inputs":[],"outputs":["/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-o","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache"],"env":{},"always-out-of-date":true,"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","signature":"44370da16822929455363858b6f197cf"},"P0:::CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build","inputs":[],"outputs":["","/Users/treyt/Desktop/code/proxy_ios/build"]},"P0:::CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos","inputs":["/Users/treyt/Desktop/code/proxy_ios/build"],"outputs":["","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos"],"outputs":["","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos","inputs":["/Users/treyt/Desktop/code/proxy_ios/build"],"outputs":["","/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Desktop/code/proxy_ios/build"],"outputs":["","/Users/treyt/Desktop/code/proxy_ios/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Desktop/code/proxy_ios/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Desktop/code/proxy_ios/build"],"outputs":["","/Users/treyt/Desktop/code/proxy_ios/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/SwiftExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build","inputs":[],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/ExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/ExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/ExplicitPrecompiledModules"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks"]},"P0:::CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/SwiftExplicitPrecompiledModules":{"tool":"create-build-directory","description":"CreateBuildDirectory /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/SwiftExplicitPrecompiledModules","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build"],"outputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/SwiftExplicitPrecompiledModules"]},"P0:::Gate WorkspaceHeaderMapVFSFilesWritten":{"tool":"phony","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml"],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap"],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap"],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h"],"outputs":[""]},"P0:::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap"],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap"],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap"],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList"],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap"],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap"],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h"],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap"],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap"],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h"],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap"],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap"],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h"],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap"],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap"],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h"],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap"],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap"],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h"],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist"],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap"],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap"],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h"],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap"],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap"],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap"],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap"],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap"],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap"],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap"],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap"],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap"],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap"],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap"],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap"],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap"],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap"],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap"],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap"],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h"],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList"],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap"],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap"],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h"],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-GenerateStubAPI":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--HeadermapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap"],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap"],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--ProductStructureTaskProducer":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap"],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--fused-phase0-compile-sources&link-binary":{"tool":"phony","inputs":["","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o.scan","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_lto.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h"],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap"],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap"],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h"],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap"],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap"],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h"],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList"],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap"],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap"],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h"],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap"],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap"],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h"],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap"],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap"],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h"],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap"],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-copy-headers-completion":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap"],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-compile-sources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json"],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-generated-headers":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-swift-generated-headers":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h"],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist"],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist"],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist"],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist"],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist"],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist"],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppExtensionInfoPlistGeneratorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-AppIntentsMetadataTaskProducer":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyStaticMetadataFileList"],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangeAlternatePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-ChangePermissions":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CodeSign":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-CopyAside":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-GenerateStubAPI":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterExecutionPolicyException":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-RegisterProduct":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-StripSymbols":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-Barrier-Validate":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CopySwiftPackageResourcesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-CustomTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-DocumentationTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ExtensionPointExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GenerateAppPlaygroundAssetCatalogTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-GeneratedFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-HeadermapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-InfoPlistTaskProducer":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Info.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist"],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleMapTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ModuleVerifierTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductPostprocessingTaskProducer":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-ProductStructureTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-RealityAssetsTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SanitizerTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-StubBinaryTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftABIBaselineGenerationTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftFrameworkABICheckerTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftPackageCopyFilesTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-SwiftStandardLibrariesTaskProducer":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TAPISymbolExtractorTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestEntryPointTaskProducerFactory":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestHostTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetPostprocessingTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-TestTargetTaskProducer":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-fused-phase0-copy-bundle-resources":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/PrivacyInfo.xcprivacy"],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-PRODUCT:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/OptionalRawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/RawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/AtomicBool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/IntegerConformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/PointerConformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Primitives/autogenerated/Primitives.native.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicInteger.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicOptionalWrappable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicStorage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicValue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/AtomicMemoryOrderings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/DoubleWord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomicLazyReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomicLazyReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/autogenerated/IntegerOperations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Unmanaged extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","Atomics","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-atomics.Atomics","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics","signature":"b492a39bd3c62beacd82d96bb9b7bed3"},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList"],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap"],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o","","",""],"outputs":[""]},"P0:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Atomics normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation Atomics normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/OptionalRawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/RawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/AtomicBool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/IntegerConformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/PointerConformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Primitives/autogenerated/Primitives.native.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicInteger.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicOptionalWrappable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicStorage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicValue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/AtomicMemoryOrderings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/DoubleWord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomicLazyReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomicLazyReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/autogenerated/IntegerOperations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Unmanaged extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics Swift Compilation Finished"]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList"],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o.scan"]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList"],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o","","",""],"outputs":[""]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o.scan"]},"P0:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/shims.c","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o.scan"]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList"],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap"],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o","","",""],"outputs":[""]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-atomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-atomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-atomics.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o.scan"]},"P0:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-nioatomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-nioatomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-nioatomics.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o.scan"]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList"],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList",""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList"],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap"],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o","","",""],"outputs":[""]},"P0:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/shims.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o.scan"]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList"],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap"],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o","","",""],"outputs":[""]},"P0:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/shim.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o.scan"]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList"],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap"],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o","","",""],"outputs":[""]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_api.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o.scan"]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_http.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_http.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_http.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o.scan"]},"P0:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_llhttp.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_llhttp.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_llhttp.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o.scan"]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList"],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap"],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o","","",""],"outputs":[""]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/liburing_shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/liburing_shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/liburing_shims.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o.scan"]},"P0:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/shim.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o.scan"]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList"],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap"],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o","","",""],"outputs":[""]},"P0:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/shim.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o.scan"]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList"],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap"],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o","","",""],"outputs":[""]},"P0:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/event_loop_id.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/event_loop_id.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/event_loop_id.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o.scan"]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList"],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap"],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o","","",""],"outputs":[""]},"P0:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/CNIOWASI.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/CNIOWASI.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/CNIOWASI.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o.scan"]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList"],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o","","",""],"outputs":[""]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/WSAStartup.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/WSAStartup.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/WSAStartup.c","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o.scan"]},"P0:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/shim.c","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o.scan"]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/OutputSpan+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/TemporaryAllocation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Copy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+ElementsEqual.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+SpanwiseZip.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Standard Conformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/BidirectionalContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+SpanwiseZip.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/ContainerIterator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/DynamicContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/MutableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/PermutableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RandomAccessContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeExpression2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeReplaceableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Collect.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Borrow.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Box.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Inout.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/InputSpan.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Shared.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","ContainersPreview","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-collections.ContainersPreview","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections","signature":"d74e71b6f0f91fdd398189b6f546c378"},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList"],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap"],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o","","",""],"outputs":[""]},"P0:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation ContainersPreview normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation ContainersPreview normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/OutputSpan+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/TemporaryAllocation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Copy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+ElementsEqual.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+SpanwiseZip.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Standard Conformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/BidirectionalContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+SpanwiseZip.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/ContainerIterator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/DynamicContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/MutableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/PermutableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RandomAccessContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeExpression2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeReplaceableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Collect.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Borrow.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Box.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Inout.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/InputSpan.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Shared.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview Swift Compilation Finished"]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-PRODUCT:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/AES-GCM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/BoringSSL/AES-GCM_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/BoringSSL/ChaChaPoly_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/ChaChaPoly.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Cipher.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Nonces.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ASN1.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1BitString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Boolean.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Identifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Integer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Null.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1OctetString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Strings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ArraySliceBigint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/GeneralizedTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ECDSASignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SEC1PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoError_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoKitErrors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/BoringSSL/Digest_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digests.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions_SHA2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-AEAD.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Ciphersuite.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KexKeyDerivation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-LabeledExtract.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Utils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/DHKEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/HPKE-KEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE-Errors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-Context.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-KeySchedule.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Modes/HPKE-Modes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure_HashFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/KEM/KEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/BoringSSL/ECDH_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/DH.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/ECDH.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Derivation/HKDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/AESWrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/BoringSSL/AESWrap_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/Ed25519_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/NISTCurvesKeys_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/X25519Keys_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Curve25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Ed25519Keys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/NISTCurvesKeys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/X25519Keys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/Symmetric/SymmetricKeys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/HMAC/HMAC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MACFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MessageAuthenticationCode.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PRF/AES.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSASignature_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/EdDSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/ECDSA.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Ed25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Signature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/RNG_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/SafeCompare_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/Zeroization_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/PrettyBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SafeCompare.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SecureBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/Zeroization.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","Crypto","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-crypto.Crypto","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"dce7b38c6a5cfdba95e6d165630a38cd"},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList"],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap"],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o","","",""],"outputs":[""]},"P0:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Crypto normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation Crypto normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/AES-GCM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/BoringSSL/AES-GCM_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/BoringSSL/ChaChaPoly_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/ChaChaPoly.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Cipher.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Nonces.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ASN1.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1BitString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Boolean.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Identifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Integer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Null.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1OctetString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Strings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ArraySliceBigint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/GeneralizedTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ECDSASignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SEC1PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoError_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoKitErrors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/BoringSSL/Digest_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digests.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions_SHA2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-AEAD.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Ciphersuite.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KexKeyDerivation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-LabeledExtract.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Utils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/DHKEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/HPKE-KEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE-Errors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-Context.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-KeySchedule.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Modes/HPKE-Modes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure_HashFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/KEM/KEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/BoringSSL/ECDH_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/DH.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/ECDH.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Derivation/HKDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/AESWrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/BoringSSL/AESWrap_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/Ed25519_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/NISTCurvesKeys_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/X25519Keys_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Curve25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Ed25519Keys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/NISTCurvesKeys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/X25519Keys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/Symmetric/SymmetricKeys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/HMAC/HMAC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MACFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MessageAuthenticationCode.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PRF/AES.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSASignature_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/EdDSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/ECDSA.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Ed25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Signature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/RNG_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/SafeCompare_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/Zeroization_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/PrettyBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SafeCompare.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SecureBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/Zeroization.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto Swift Compilation Finished"]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/AEAD/BoringSSLAEAD.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurve.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurvePoint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/ArbitraryPrecisionInteger.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/FiniteFieldArithmeticContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/RandomBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","CryptoBoringWrapper","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-crypto.CryptoBoringWrapper","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"29d4098a0dd5b7aa8ab02a61be791e50"},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList"],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap"],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o","","",""],"outputs":[""]},"P0:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation CryptoBoringWrapper normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation CryptoBoringWrapper normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/AEAD/BoringSSLAEAD.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurve.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurvePoint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/ArbitraryPrecisionInteger.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/FiniteFieldArithmeticContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/RandomBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper Swift Compilation Finished"]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-PRODUCT:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Codable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Collection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+CustomReflectable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+ExpressibleByArrayLiteral.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Testing.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._Storage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._UnsafeHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBufferHeader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Append.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Consumption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Experimental.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Initializers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Insertions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Prepend.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Removals.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Replacements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Testing.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Append.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Consumption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Experimental.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Initializers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Insertions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Prepend.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Removals.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Replacements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_DequeSlot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeSegments.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","DequeModule","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-collections.DequeModule","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections","signature":"d95d622a7b47a693ce0299d1cfd24080"},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList"],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap"],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o","","",""],"outputs":[""]},"P0:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation DequeModule normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation DequeModule normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Codable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Collection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+CustomReflectable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+ExpressibleByArrayLiteral.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Testing.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._Storage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._UnsafeHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBufferHeader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Append.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Consumption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Experimental.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Initializers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Insertions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Prepend.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Removals.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Replacements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Testing.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Append.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Consumption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Experimental.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Initializers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Insertions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Prepend.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Removals.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Replacements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_DequeSlot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeSegments.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule Swift Compilation Finished"]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-PRODUCT:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Configuration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Cursor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+SQLCipher.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Schema.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Statements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseBackupProgress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseCollation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseFunction.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePublishers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseQueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseReader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegionObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaCache.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaSource.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshotPool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValueConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DispatchQueueActor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/FetchRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Row.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowAdapter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowDecodingError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQL.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLInterpolation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SchedulingWatchdog.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SerializedDatabase.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Statement.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementAuthorizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementColumnConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/CoreGraphics/CGFloat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Data.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseDateComponents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseValueConvertible+ReferenceConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Date.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Decimal.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNull.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/SQLiteDateParser.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/URL.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/UUID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Decodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Encodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+RawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/JSONRequiredEncoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/Optional.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/StandardLibrary.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionClock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshotTransaction.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/Database+Dump.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DatabaseReader+dump.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/DebugDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/JSONDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/LineDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/ListDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/QuoteDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3Pattern.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3TokenizerDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS4.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5CustomTokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Pattern.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Tokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5TokenizerDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5WrapperTokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Fixits.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/JSONColumn.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONExpressible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/DatabaseMigrator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/Migration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS3+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS5+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/ForeignKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/Association.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/AssociationAggregate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/BelongsToAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyThroughAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneThroughAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/JoinAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/CommonTableExpression.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/QueryInterfaceRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/RequestProtocols.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Column.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/DatabasePromise.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLExpression.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLForeignKeyRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOperators.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOrdering.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLRelation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSelection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSubquery.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Table.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLColumnGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLGenerationContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLIndexGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLQueryGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableAlterationGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/TableAlias.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLInterpolation+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ColumnDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/Database+SchemaDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ForeignKeyDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/IndexDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableAlteration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/VirtualTableModule.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+Association.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+QueryInterfaceRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord+Encodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+Decodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+TableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+DAO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Delete.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Insert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Save.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Update.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Upsert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Insert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Save.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Upsert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/Record.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/TableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/CaseInsensitiveIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections+English.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Mutex.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OnDemandFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OrderedDictionary.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Pool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReadWriteLock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReceiveValuesOn.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Refinable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Utils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/DatabaseCancellable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueConcurrentObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueWriteOnlyObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Fetch.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/RemoveDuplicates.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Trace.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/ValueReducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/SharedValueObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservationScheduler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","GRDB","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","13.0","--bundle-identifier","grdb.swift.GRDB","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.appintents","--target-triple","arm64-apple-ios13.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift","signature":"afc9991f9ac283618929ad9647c6dfa7"},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList"],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap"],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o","","",""],"outputs":[""]},"P0:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation GRDB normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation GRDB normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Configuration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Cursor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+SQLCipher.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Schema.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Statements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseBackupProgress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseCollation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseFunction.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePublishers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseQueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseReader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegionObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaCache.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaSource.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshotPool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValueConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DispatchQueueActor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/FetchRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Row.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowAdapter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowDecodingError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQL.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLInterpolation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SchedulingWatchdog.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SerializedDatabase.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Statement.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementAuthorizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementColumnConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/CoreGraphics/CGFloat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Data.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseDateComponents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseValueConvertible+ReferenceConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Date.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Decimal.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNull.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/SQLiteDateParser.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/URL.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/UUID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Decodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Encodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+RawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/JSONRequiredEncoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/Optional.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/StandardLibrary.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionClock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshotTransaction.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/Database+Dump.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DatabaseReader+dump.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/DebugDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/JSONDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/LineDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/ListDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/QuoteDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3Pattern.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3TokenizerDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS4.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5CustomTokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Pattern.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Tokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5TokenizerDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5WrapperTokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Fixits.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/JSONColumn.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONExpressible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/DatabaseMigrator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/Migration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS3+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS5+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/ForeignKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/Association.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/AssociationAggregate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/BelongsToAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyThroughAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneThroughAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/JoinAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/CommonTableExpression.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/QueryInterfaceRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/RequestProtocols.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Column.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/DatabasePromise.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLExpression.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLForeignKeyRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOperators.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOrdering.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLRelation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSelection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSubquery.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Table.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLColumnGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLGenerationContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLIndexGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLQueryGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableAlterationGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/TableAlias.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLInterpolation+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ColumnDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/Database+SchemaDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ForeignKeyDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/IndexDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableAlteration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/VirtualTableModule.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+Association.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+QueryInterfaceRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord+Encodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+Decodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+TableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+DAO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Delete.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Insert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Save.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Update.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Upsert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Insert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Save.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Upsert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/Record.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/TableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/CaseInsensitiveIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections+English.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Mutex.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OnDemandFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OrderedDictionary.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Pool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReadWriteLock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReceiveValuesOn.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Refinable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Utils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/DatabaseCancellable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueConcurrentObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueWriteOnlyObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Fetch.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/RemoveDuplicates.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Trace.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/ValueReducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/SharedValueObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservationScheduler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB Swift Compilation Finished"]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDBSQLite-PACKAGE-TARGET:GRDBSQLite-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/PrivacyInfo.xcprivacy"]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle",""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle/Info.plist"]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle","","",""],"outputs":[""]},"P0:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB_GRDB.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift","signature":"92b12f740af8ca86e218944dd9a6c93c"},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Debugging.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/FixedWidthInteger+roundUpToPowerOfTwo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/Integer rank.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+first and last set bit.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+reversed.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/LifetimeOverride.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/RandomAccessCollection+Offsets.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Span+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/String+Padding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+Index.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+_Word.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableRawBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeRawBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_SortedCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_UniqueCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","InternalCollectionsUtilities","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-collections.InternalCollectionsUtilities","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections","signature":"87ae9725b5d54bc7f826c80f287609c9"},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList"],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap"],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o","","",""],"outputs":[""]},"P0:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation InternalCollectionsUtilities normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation InternalCollectionsUtilities normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Debugging.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/FixedWidthInteger+roundUpToPowerOfTwo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/Integer rank.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+first and last set bit.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+reversed.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/LifetimeOverride.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/RandomAccessCollection+Offsets.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Span+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/String+Padding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+Index.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+_Word.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableRawBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeRawBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_SortedCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_UniqueCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities Swift Compilation Finished"]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-PRODUCT:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIO/Exports.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIO","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.NIO","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"c8a121b9d0faaa9cf93d3d4e8c49780d"},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList"],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap"],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o","","",""],"outputs":[""]},"P0:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIO normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIO normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIO/Exports.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO Swift Compilation Finished"]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-PRODUCT:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLockedValueBox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOThreadPoolWorkAvailable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOConcurrencyHelpers","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.NIOConcurrencyHelpers","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"b39952a08900d88d20281ef154cf69b6"},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList"],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap"],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o","","",""],"outputs":[""]},"P0:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOConcurrencyHelpers normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOConcurrencyHelpers normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLockedValueBox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOThreadPoolWorkAvailable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers Swift Compilation Finished"]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-PRODUCT:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AddressedEnvelope.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncAwaitSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelInboundStream.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelOutboundWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducerStrategies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOThrowingAsyncSequenceProducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/BSDSocketAPI.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-aux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-binaryEncodedLengthPrefix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-conversions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-core.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-hex.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-int.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-lengthPrefix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-multi-int.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-quicBinaryEncodingStrategy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-views.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Channel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandlers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelInvoker.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelOption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/CircularBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Codec.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ConvenienceOptionSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DeadChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DispatchQueue+WithFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+Deprecated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+SerialExecutor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+AssumeIsolated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+Deprecated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+WithEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileRegion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/GlobalSingletons.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IOData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IPProtocol.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerBitPacking.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Interfaces.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Linux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MarkedCircularBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MulticastChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOAny.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCloseOnErrorHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCoreSendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIODecodedAsyncSequence.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOLoopBound.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOPooledRecvBufferAllocator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOScheduledCallback.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSendable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSplitLinesMessageDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOTransportAccessibleChannelCore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/RecvByteBufferAllocator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SingleStepByteToMessageDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketAddresses.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketOptionProvider.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SystemCallHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TimeAmount+Duration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TypeAssistedChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/UniversalBootstrapSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOCore","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.NIOCore","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"b142d01eb9c5f71ce1488646602999a1"},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList"],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap"],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o","","",""],"outputs":[""]},"P0:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOCore normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOCore normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AddressedEnvelope.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncAwaitSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelInboundStream.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelOutboundWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducerStrategies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOThrowingAsyncSequenceProducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/BSDSocketAPI.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-aux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-binaryEncodedLengthPrefix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-conversions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-core.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-hex.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-int.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-lengthPrefix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-multi-int.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-quicBinaryEncodingStrategy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-views.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Channel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandlers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelInvoker.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelOption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/CircularBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Codec.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ConvenienceOptionSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DeadChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DispatchQueue+WithFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+Deprecated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+SerialExecutor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+AssumeIsolated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+Deprecated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+WithEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileRegion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/GlobalSingletons.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IOData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IPProtocol.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerBitPacking.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Interfaces.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Linux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MarkedCircularBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MulticastChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOAny.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCloseOnErrorHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCoreSendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIODecodedAsyncSequence.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOLoopBound.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOPooledRecvBufferAllocator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOScheduledCallback.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSendable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSplitLinesMessageDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOTransportAccessibleChannelCore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/RecvByteBufferAllocator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SingleStepByteToMessageDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketAddresses.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketOptionProvider.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SystemCallHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TimeAmount+Duration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TypeAssistedChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/UniversalBootstrapSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore Swift Compilation Finished"]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/Embedded.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOEmbedded","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.NIOEmbedded","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"5bcfd72e6236501c3f11cd8685148dbc"},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList"],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap"],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o","","",""],"outputs":[""]},"P0:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOEmbedded normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOEmbedded normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/Embedded.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded Swift Compilation Finished"]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-PRODUCT:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugInboundEventsHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugOutboundEventsHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/FixedLengthFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/HTTP1ProxyConnectHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming+ContentLengthHeader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldBasedFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldPrepender.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LineBasedFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/MarkedCircularBuffer+PopFirstCheckMarked.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOExtrasError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOLengthFieldBitLength.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIORequestIdentifiable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/PCAPRingBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/QuiescingHelper.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandlers+State.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseWithIDHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/WritePCAPHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOExtras","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio-extras.NIOExtras","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras","signature":"fed87a47474574865635afc813175935"},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList"],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap"],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o","","",""],"outputs":[""]},"P0:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOExtras normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOExtras normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugInboundEventsHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugOutboundEventsHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/FixedLengthFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/HTTP1ProxyConnectHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming+ContentLengthHeader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldBasedFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldPrepender.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LineBasedFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/MarkedCircularBuffer+PopFirstCheckMarked.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOExtrasError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOLengthFieldBitLength.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIORequestIdentifiable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/PCAPRingBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/QuiescingHelper.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandlers+State.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseWithIDHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/WritePCAPHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras Swift Compilation Finished"]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-PRODUCT:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/ByteCollectionUtils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPEncoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaderValidator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaders+Validation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPPipelineSetup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerPipelineHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerProtocolErrorHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypedPipelineSetup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPClientUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPObjectAggregator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgraderStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgraderStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOHTTP1","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.NIOHTTP1","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"0c7a57cf7053272735bcf75e716e510f"},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList"],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap"],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o","","",""],"outputs":[""]},"P0:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOHTTP1 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOHTTP1 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/ByteCollectionUtils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPEncoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaderValidator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaders+Validation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPPipelineSetup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerPipelineHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerProtocolErrorHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypedPipelineSetup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPClientUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPObjectAggregator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgraderStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgraderStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1 Swift Compilation Finished"]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-PRODUCT:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPICommon.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+AccessibleTransport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+SocketOptionProvider.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseStreamSocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Bootstrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ControlMessage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/DatagramVectorReadManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Errors+Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/FileDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/GetaddrinfoResolver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/HappyEyeballs.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerBitPacking.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Linux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxCPUSet.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxUring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/MultiThreadedEventLoopGroup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOPosixSendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOThreadPool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NonBlockingFileIO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingDatagramWritesManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingWritesManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipeChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipePair.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Pool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons+ConcurrencyTakeOver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/RawSocketBootstrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Resolver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Selectable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorEpoll.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorGeneric.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorKqueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorUring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorWSAPoll.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ServerSocket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Socket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketProtocols.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/StructuredConcurrencyHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/System.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Thread.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockChannelEvents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Windows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOPosix","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.NIOPosix","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"2521dc0556040557c6528c7af785d20a"},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList"],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap"],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o","","",""],"outputs":[""]},"P0:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOPosix normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOPosix normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPICommon.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+AccessibleTransport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+SocketOptionProvider.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseStreamSocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Bootstrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ControlMessage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/DatagramVectorReadManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Errors+Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/FileDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/GetaddrinfoResolver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/HappyEyeballs.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerBitPacking.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Linux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxCPUSet.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxUring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/MultiThreadedEventLoopGroup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOPosixSendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOThreadPool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NonBlockingFileIO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingDatagramWritesManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingWritesManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipeChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipePair.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Pool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons+ConcurrencyTakeOver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/RawSocketBootstrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Resolver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Selectable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorEpoll.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorGeneric.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorKqueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorUring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorWSAPoll.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ServerSocket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Socket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketProtocols.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/StructuredConcurrencyHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/System.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Thread.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockChannelEvents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Windows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix Swift Compilation Finished"]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-PRODUCT:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/AndroidCABundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ByteBufferBIO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/CustomPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/IdentityVerification.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/LinuxCABundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLClientHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler+Configuration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLServerHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PosixPort.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCallbacks.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateExtensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLConnection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLErrors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLInit.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPKCS12Bundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SecurityFrameworkCertificateVerification.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/String+unsafeUninitializedCapacity.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SubjectAlternativeName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/NIOSSLSecureBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/RNG.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/SafeCompare.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/Zeroization.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/TLSConfiguration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UniversalBootstrapSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UnsafeKeyAndChainTarget.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOSSL","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio-ssl.NIOSSL","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl","signature":"186424d2249fcfbe1d490f5b51a0bddf"},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList"],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap"],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o","","",""],"outputs":[""]},"P0:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOSSL normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOSSL normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/AndroidCABundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ByteBufferBIO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/CustomPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/IdentityVerification.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/LinuxCABundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLClientHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler+Configuration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLServerHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PosixPort.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCallbacks.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateExtensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLConnection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLErrors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLInit.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPKCS12Bundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SecurityFrameworkCertificateVerification.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/String+unsafeUninitializedCapacity.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SubjectAlternativeName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/NIOSSLSecureBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/RNG.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/SafeCompare.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/Zeroization.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/TLSConfiguration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UniversalBootstrapSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UnsafeKeyAndChainTarget.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL Swift Compilation Finished"]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-PRODUCT:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ApplicationProtocolNegotiationHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/NIOTypedApplicationProtocolNegotiationHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ProtocolNegotiationHandlerStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/SNIHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/TLSEvents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","NIOTLS","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.NIOTLS","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"e3e1cbeb58e3d5265d0c9a0bece0fdbe"},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList"],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap"],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o","","",""],"outputs":[""]},"P0:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation NIOTLS normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation NIOTLS normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ApplicationProtocolNegotiationHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/NIOTypedApplicationProtocolNegotiationHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ProtocolNegotiationHandlerStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/SNIHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/TLSEvents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS Swift Compilation Finished"]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/CURLParser.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/CertificateManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/Constants.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/GlueHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/IPCManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/MITMHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ProxyServer.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/WildcardMatcher.swift","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","ProxyCore","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","17.0","--bundle-identifier","com.treyt.proxyapp.ProxyCore","--output","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework","--target-triple","arm64-apple-ios17.0","--binary-file","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore","--dependency-file","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","--stringsdata-file","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","--metadata-file-list","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios","signature":"653825fae88bc131028518185c4e5dd5"},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--end":{"tool":"phony","inputs":["","","","","","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o.scan","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_lto.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_lto.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList"],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap"],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o.scan","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_lto.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Gate target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682--will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::GenerateTAPI /Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos/ProxyCore.framework/ProxyCore.tbd":{"tool":"shell","description":"GenerateTAPI /Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos/ProxyCore.framework/ProxyCore.tbd","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos/ProxyCore.framework/ProxyCore.tbd",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi","stubify","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos","-L/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore","-o","/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos/ProxyCore.framework/ProxyCore.tbd"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios","control-enabled":false,"signature":"64aefb180ad365cc3e06cd4adffd7e5d"},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::MkDir /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework":{"tool":"mkdir","description":"MkDir /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework","inputs":["",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework",""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::MkDir /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers":{"tool":"mkdir","description":"MkDir /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers","inputs":["",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers",""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::RegisterExecutionPolicyException /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework","","",""],"outputs":[""]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::ScanDependencies /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","","","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o.scan"]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::SwiftDriver Compilation ProxyCore normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation ProxyCore normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/CURLParser.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/CertificateManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/Constants.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/GlueHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/IPCManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/MITMHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ProxyServer.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/WildcardMatcher.swift","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","","","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.swiftconstvalues","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.swiftconstvalues"]},"P0:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Touch /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework":{"tool":"shell","description":"Touch /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios","signature":"4426e7b0406f5b7464f34308c4f45df9"},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-PRODUCT:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/ASN1.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/BER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1BitString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Boolean.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Identifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Integer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Null.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1OctetString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Strings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ArraySliceBigint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/GeneralizedTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/TimeUtilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/UTCTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/DER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Errors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","SwiftASN1","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-asn1.SwiftASN1","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1","signature":"96b8afb8290a86a0ec6d87700b47ed46"},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList"],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap"],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o","","",""],"outputs":[""]},"P0:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation SwiftASN1 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation SwiftASN1 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/ASN1.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/BER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1BitString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Boolean.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Identifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Integer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Null.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1OctetString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Strings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ArraySliceBigint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/GeneralizedTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/TimeUtilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/UTCTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/DER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Errors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1 Swift Compilation Finished"]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-PRODUCT:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttributes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificateSigningRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificationRequestInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/ExtensionRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Certificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateSerialNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSContentInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSEncapsulatedContentInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSIssuerAndSerialNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSOperations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignedData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Curve25519+DER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CustomPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Digests.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CommonName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CountryName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DNBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DomainComponent.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/EmailAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/LocalityName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationalUnitName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StateOrProvinceName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StreetAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Error.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityInformationAccess.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityKeyIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/BasicConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtendedKeyUsage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtensionIdentifiers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/KeyUsage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/NameConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectAlternativeName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectKeyIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/ExtensionsBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/GeneralName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Lock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/LockedValueBox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/BasicOCSPResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/DirectoryString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertStatus.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPExtensionID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPNonce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseStatus.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPTBSRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PromiseAndFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RDNAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RandomNumberGenerator+bytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RelativeDistinguishedName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SEC1PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SecKeyWrapper.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Signature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SignatureAlgorithm.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AllOfPolicies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AnyPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CertificateStore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CustomCertificateStore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/OneOfPolicies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/PolicyBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/BasicConstraintsPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DNSNames.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DirectoryNames.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/ExpiryPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/IPConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/NameConstraintsPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/RFC5280Policy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/URIConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/VersionPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ServerIdentityPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/TrustRootLoading.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/UnverifiedChain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ValidatedCertificateChain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerificationDiagnostic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/Verifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerifierPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/AlgorithmIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/ECDSASignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/RSAPKCS1PublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TBSCertificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Time.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TimeCalculations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Validity.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509SendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","X509","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-certificates.X509","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates","signature":"de2bafe0024518ce34e21f0d85251a95"},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList"],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap"],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o","","",""],"outputs":[""]},"P0:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation X509 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation X509 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttributes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificateSigningRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificationRequestInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/ExtensionRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Certificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateSerialNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSContentInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSEncapsulatedContentInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSIssuerAndSerialNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSOperations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignedData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Curve25519+DER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CustomPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Digests.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CommonName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CountryName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DNBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DomainComponent.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/EmailAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/LocalityName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationalUnitName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StateOrProvinceName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StreetAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Error.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityInformationAccess.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityKeyIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/BasicConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtendedKeyUsage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtensionIdentifiers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/KeyUsage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/NameConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectAlternativeName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectKeyIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/ExtensionsBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/GeneralName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Lock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/LockedValueBox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/BasicOCSPResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/DirectoryString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertStatus.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPExtensionID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPNonce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseStatus.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPTBSRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PromiseAndFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RDNAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RandomNumberGenerator+bytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RelativeDistinguishedName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SEC1PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SecKeyWrapper.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Signature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SignatureAlgorithm.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AllOfPolicies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AnyPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CertificateStore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CustomCertificateStore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/OneOfPolicies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/PolicyBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/BasicConstraintsPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DNSNames.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DirectoryNames.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/ExpiryPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/IPConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/NameConstraintsPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/RFC5280Policy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/URIConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/VersionPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ServerIdentityPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/TrustRootLoading.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/UnverifiedChain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ValidatedCertificateChain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerificationDiagnostic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/Verifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerifierPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/AlgorithmIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/ECDSASignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/RSAPKCS1PublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TBSCertificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Time.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TimeCalculations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Validity.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509SendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509 Swift Compilation Finished"]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList"],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o.scan","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o","","",""],"outputs":[""]},"P0:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/src/_AtomicsShims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"clang-scan-modules","description":"ScanDependencies /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/src/_AtomicsShims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/src/_AtomicsShims.c","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o.scan"]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/_CertificateInternals/_TinyArray.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","_CertificateInternals","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-certificates.-CertificateInternals","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates","signature":"9bea5ffa07babca55ca84a7918c550b4"},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList"],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap"],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o","","",""],"outputs":[""]},"P0:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation _CertificateInternals normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation _CertificateInternals normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/_CertificateInternals/_TinyArray.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals Swift Compilation Finished"]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-PRODUCT:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CBC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CFB.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CTR.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_GCM_SIV.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/Block Function.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CFB_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CTR_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_GCM_SIV_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/CMAC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC+API.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCCredential.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCEncoding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPrecredential.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPresentation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/BoringSSL/ChaCha20CTR_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/ChaCha20CTR.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8DERRepresentation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/RFC8410AlgorithmIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/BoringSSL/ECToolbox_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/ECToolbox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/H2G/HashToField.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/KDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/PBKDF2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/BoringSSL/Scrypt_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/Scrypt.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFClient.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRF+API.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFClient.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/BoringSSLHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Data+Extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/DigestType.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Error.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/I2OSP.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/IntegerEncoding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PrettyBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadOps.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadSpecific.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/DLEQ.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Prover.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Verifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/ZKPToolbox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","_CryptoExtras","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-crypto.-CryptoExtras","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"50e5451de1e4cf50b042e1c2d89515cf"},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList"],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap"],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o","","",""],"outputs":[""]},"P0:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation _CryptoExtras normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation _CryptoExtras normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CBC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CFB.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CTR.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_GCM_SIV.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/Block Function.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CFB_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CTR_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_GCM_SIV_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/CMAC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC+API.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCCredential.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCEncoding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPrecredential.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPresentation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/BoringSSL/ChaCha20CTR_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/ChaCha20CTR.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8DERRepresentation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/RFC8410AlgorithmIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/BoringSSL/ECToolbox_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/ECToolbox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/H2G/HashToField.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/KDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/PBKDF2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/BoringSSL/Scrypt_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/Scrypt.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFClient.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRF+API.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFClient.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/BoringSSLHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Data+Extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/DigestType.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Error.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/I2OSP.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/IntegerEncoding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PrettyBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadOps.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadSpecific.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/DLEQ.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Prover.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Verifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/ZKPToolbox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras Swift Compilation Finished"]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIOBase64/Base64.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","_NIOBase64","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.-NIOBase64","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"6290c4d84e3b6365a3902ab5a8a5ba76"},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList"],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap"],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64 Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o","","",""],"outputs":[""]},"P0:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation _NIOBase64 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation _NIOBase64 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIOBase64/Base64.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64 Swift Compilation Finished"]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ExtractAppIntentsMetadata":{"tool":"shell","description":"ExtractAppIntentsMetadata","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/Heap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/PriorityQueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/_TinyArray.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata",""],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor","--toolchain-dir","/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain","--module-name","_NIODataStructures","--sdk-root","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","--xcode-version","17C529","--platform-family","iOS","--deployment-target","12.0","--bundle-identifier","swift-nio.-NIODataStructures","--output","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.appintents","--target-triple","arm64-apple-ios12.0","--binary-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o","--dependency-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","--stringsdata-file","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata","--source-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","--metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList","--static-metadata-file-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList","--swift-const-vals-list","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList","--force","--compile-time-extraction","--deployment-aware-processing","--validate-assistant-intents","--no-app-shortcuts-localization"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"e19b0b499ee77d58d5d90514c43de58f"},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList"],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap"],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures Swift Compilation Finished","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o","","",""],"outputs":[""]},"P0:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation _NIODataStructures normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation","description":"SwiftDriver Compilation _NIODataStructures normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/Heap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/PriorityQueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/_TinyArray.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures Swift Compilation Finished"]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/PrivacyInfo.xcprivacy"]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle",""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle/Info.plist"]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"7a5ab3400eb9dd6b8d148f412ebea1d6"},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/PrivacyInfo.xcprivacy"]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle",""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle/Info.plist"]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle","","",""],"outputs":[""]},"P0:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"8bad86da19eacf1f2517f2d888949593"},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/PrivacyInfo.xcprivacy"]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle",""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle/Info.plist"]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle","","",""],"outputs":[""]},"P0:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_Crypto.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"03ac05f15c6958dc5b05e9610df552e0"},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/PrivacyInfo.xcprivacy"]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle",""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle/Info.plist"]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle","","",""],"outputs":[""]},"P0:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"5d00c1de058e72645d45eb0112bc7e46"},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/PrivacyInfo.xcprivacy"]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle",""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle/Info.plist"]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle","","",""],"outputs":[""]},"P0:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/swift-crypto__CryptoExtras.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","signature":"2b5bc8af2a3a175855330d462e7e0c46"},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/PrivacyInfo.xcprivacy"]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle",""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle/Info.plist"]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle","","",""],"outputs":[""]},"P0:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/swift-nio-ssl_NIOSSL.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl","signature":"75428d45bc5a697b19d5a124831b8476"},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PrivacyInfo.xcprivacy":{"tool":"file-copy","description":"CpResource /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/PrivacyInfo.xcprivacy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PrivacyInfo.xcprivacy","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PrivacyInfo.xcprivacy/","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/PrivacyInfo.xcprivacy"]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-compiling":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-linking":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-begin-scanning":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-end":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/PrivacyInfo.xcprivacy","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Info.plist","","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyStaticMetadataFileList","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-entry":{"tool":"phony","inputs":["","","","","","","","",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-immediate":{"tool":"phony","inputs":["","","","","","","",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-linker-inputs-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-modules-ready":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-unsigned-product-ready":{"tool":"phony","inputs":["","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyMetadataFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyStaticMetadataFileList",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Gate target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos-will-sign":{"tool":"phony","inputs":[""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle":{"tool":"mkdir","description":"MkDir /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle","inputs":["",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle",""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist":{"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Info.plist /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle/Info.plist"]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle":{"tool":"register-execution-policy-exception","description":"RegisterExecutionPolicyException /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle","","",""],"outputs":[""]},"P0:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle":{"tool":"shell","description":"Touch /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle","","",""],"outputs":[""],"args":["/usr/bin/touch","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/swift-nio_NIOPosix.bundle"],"env":{},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","signature":"0d6722ec7eba086f1fe3ff2d5d39fe18"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bitstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bitstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bitstr.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bitstr.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.d"],"deps-style":"makefile","signature":"35c6a7d0938466792f47453bc03c452a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bool.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_bool.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.d"],"deps-style":"makefile","signature":"8063d06ebb53e5ffefd960f22ad81c3e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_d2i_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_d2i_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_d2i_fp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_d2i_fp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.d"],"deps-style":"makefile","signature":"aa3c5a0bd2f303b4c083cb58754111e2"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_digest.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_digest.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_digest.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_digest.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.d"],"deps-style":"makefile","signature":"fa994b926c0050923f711624733cbab5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_dup.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_dup.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_dup.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_dup.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.d"],"deps-style":"makefile","signature":"8bdf6c174f872bb40a27a4ef1916397a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_gentm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_gentm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_gentm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_gentm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.d"],"deps-style":"makefile","signature":"cdb52ecebe4f9e734fb389430f7e388e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_i2d_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_i2d_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_i2d_fp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_i2d_fp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.d"],"deps-style":"makefile","signature":"4a6bd80b0ce1596cce875238260e04e6"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_int.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_int.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.d"],"deps-style":"makefile","signature":"07ed5e13943a4c2a4cd7645a671da4c7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_mbstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_mbstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_mbstr.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_mbstr.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.d"],"deps-style":"makefile","signature":"4e1580ef0ab6f0daadb9105539031834"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_object.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_object.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_object.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_object.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.d"],"deps-style":"makefile","signature":"4e5f0feded0d5d0f08e0f9111c547ba5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_octet.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_octet.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_octet.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_octet.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.d"],"deps-style":"makefile","signature":"76a222cf58d3f386ece48771063582e7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_sign.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_sign.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.d"],"deps-style":"makefile","signature":"9fb158dfbb98af2fcd4e4afe139e8637"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strex.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strex.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strex.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strex.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.d"],"deps-style":"makefile","signature":"fdeb4a4521173813dd8fd224393d2436"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strnid.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strnid.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strnid.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_strnid.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.d"],"deps-style":"makefile","signature":"3ef51ae09ba1971a444e3a08eecf8351"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_time.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_time.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.d"],"deps-style":"makefile","signature":"a3299bbe91a954e19a24ef180cac7185"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_type.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_type.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_type.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_type.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.d"],"deps-style":"makefile","signature":"a8ecf15b1b05916a3f26b91e986e5ebb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_utctm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_utctm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_utctm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/a_utctm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.d"],"deps-style":"makefile","signature":"388251328c3b79702d5ee67839ba47a4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_verify.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_verify.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_verify.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/a_verify.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.d"],"deps-style":"makefile","signature":"a1de7859e495c684f3a2801bd9e79209"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.d"],"deps-style":"makefile","signature":"da6578abb33af9c09ce90ac2f705a1f9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.d"],"deps-style":"makefile","signature":"0105d8bbb6227b862492bd9f4d778bed"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.d"],"deps-style":"makefile","signature":"73df1b226913c6899ddbc8c156dff8a7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aes-gcm-avx512-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.d"],"deps-style":"makefile","signature":"0b5bce93aa76c920767b6f74b9e943da"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/aes/aes.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/aes/aes.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/aes/aes.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/aes/aes.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.d"],"deps-style":"makefile","signature":"c81803f4e3f34be200792e621c99063b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.d"],"deps-style":"makefile","signature":"6ddc846221490bcad27e279534c47d1c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.d"],"deps-style":"makefile","signature":"2515b853c98e79c40c6ce6fcee2b2ddf"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.d"],"deps-style":"makefile","signature":"885084d9dbb10b2924fcc99b5f6c70dc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.d"],"deps-style":"makefile","signature":"f4a633abedc83614bc7d113ef64343c5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.d"],"deps-style":"makefile","signature":"9528bfd1d5a446983f463553730f6079"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.d"],"deps-style":"makefile","signature":"8bee4f36ce6191a8a0f898f661858ebd"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.d"],"deps-style":"makefile","signature":"3212019dc354fe18cbfee873506518d9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesni-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.d"],"deps-style":"makefile","signature":"a4cf6fbedef1e8cda27e0cc4c1cfd56b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.d"],"deps-style":"makefile","signature":"6b043f6f99b67f1c8c70302c74ab4817"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.d"],"deps-style":"makefile","signature":"9c000d7b3f1ac9fed4b30e85cf7cd53b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.d"],"deps-style":"makefile","signature":"af2c26c1c3e74f105a876541cb0b9435"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.d"],"deps-style":"makefile","signature":"8b5b09520b26f613b16d8c4b955e2481"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.d"],"deps-style":"makefile","signature":"312a3469481ec03fed994d2b9ae953b9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.d"],"deps-style":"makefile","signature":"8149b4db167d89ed39e4a9a044fba54a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.d"],"deps-style":"makefile","signature":"09e27757864c2a3d47f98e93dd2ba938"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/algorithm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/algorithm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/algorithm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/algorithm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.d"],"deps-style":"makefile","signature":"0f321e31d99df91936069c475acb38b0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv4-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv4-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv4-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv4-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.d"],"deps-style":"makefile","signature":"fce707a4e23010f4e7feaa0e47429686"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.d"],"deps-style":"makefile","signature":"8d98e831783274b9126fca23929b4690"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.d"],"deps-style":"makefile","signature":"ea318650abbc4ec8b3ff56d60ebfde60"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/armv8-mont-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.d"],"deps-style":"makefile","signature":"c1132d3dbff67d92ea7770d9ee27757e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/asn1_compat.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/asn1_compat.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/asn1_compat.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/asn1_compat.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.d"],"deps-style":"makefile","signature":"cb011f8e8c843c8cac6f2aa729d279e1"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/asn1_gen.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/asn1_gen.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/asn1_gen.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/asn1_gen.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.d"],"deps-style":"makefile","signature":"e4a8ed5d7f9ed69dd89231438744cb27"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.d"],"deps-style":"makefile","signature":"c5abe202f78a884a8c3b50ad54e6f6c0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_par.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_par.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_par.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn1_par.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.d"],"deps-style":"makefile","signature":"33ced53819d781039cc5505f429290ef"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn_pack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn_pack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn_pack.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/asn_pack.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.d"],"deps-style":"makefile","signature":"f273267116dc67e396f87496373cf5a3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/base64/base64.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/base64/base64.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/base64/base64.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/base64/base64.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.d"],"deps-style":"makefile","signature":"25607067cba9b5dd0214b0b28b1f1459"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/bcm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/bcm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/bcm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/bcm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.d"],"deps-style":"makefile","signature":"086066c8359c390695b2a38713894bb7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/ber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/ber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/ber.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/ber.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.d"],"deps-style":"makefile","signature":"3dd45d23d8fe8aa93efe3377aff9a953"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.d"],"deps-style":"makefile","signature":"65e5f0232218b5eef1d64e82f20ad5de"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio_mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio_mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio_mem.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/bio_mem.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.d"],"deps-style":"makefile","signature":"c8e5ccab74c49bd061bf7160bab67252"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/blake2/blake2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/blake2/blake2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/blake2/blake2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/blake2/blake2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.d"],"deps-style":"makefile","signature":"d403ed0422df90e8b1ac7022b2756ed8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.d"],"deps-style":"makefile","signature":"8f94a52440eefe6e64a47f9b3c7eddb7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.d"],"deps-style":"makefile","signature":"438c7d78d85cbdf1ef8e75f1f626545c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.d"],"deps-style":"makefile","signature":"b92376c8dc55b86ca4bc037c70ea600d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.d"],"deps-style":"makefile","signature":"60acecdd25f3d4f0ad93f1fe6b8a06e2"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bn-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.d"],"deps-style":"makefile","signature":"20754e10f3ed32c4b8af4839e34a7bbe"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/bn_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/bn_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/bn_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/bn_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.d"],"deps-style":"makefile","signature":"12a7dab28407aa3708ef30bbf91d5afc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bsaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bsaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bsaes-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/bsaes-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.d"],"deps-style":"makefile","signature":"3b74e165292b52ba44446d44a49ab97f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/buf/buf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/buf/buf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/buf/buf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/buf/buf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.d"],"deps-style":"makefile","signature":"99a46283565f11859fa566a0eca10bfd"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_dir.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_dir.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_dir.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_dir.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.d"],"deps-style":"makefile","signature":"c03e0fe4ff477d1d68b661f4f265d8bb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_file.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/by_file.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.d"],"deps-style":"makefile","signature":"766cef70e573fd2e4dde8c8fd26ff820"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbb.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbb.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbb.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbb.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.d"],"deps-style":"makefile","signature":"7b5fc09b2ec496f769eb553163698f32"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbs.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/cbs.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.d"],"deps-style":"makefile","signature":"0494d3035f8ee9f85477afaf5a1127c4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.d"],"deps-style":"makefile","signature":"a9034b33ea2b2e1a55622fbbf3c9ed7d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.d"],"deps-style":"makefile","signature":"d11df1de473b8bd3e14e25cf519818e5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.d"],"deps-style":"makefile","signature":"fad95f1395e27cdccf6116db4e9c181c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.d"],"deps-style":"makefile","signature":"d8568f30a337fe37184d0499fc1f2c1f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.d"],"deps-style":"makefile","signature":"961ca161049c324ad864736397986fbf"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.d"],"deps-style":"makefile","signature":"a6a336de0b245360fd1782db837a9f39"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.d"],"deps-style":"makefile","signature":"fb876fd7367010bbcd54da3f564cf95a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.d"],"deps-style":"makefile","signature":"d0a39a155af11fa39d2a6130d829f400"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/chacha/chacha.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/chacha/chacha.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/chacha/chacha.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/chacha/chacha.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.d"],"deps-style":"makefile","signature":"76c8008e0e5d78d6ccfbb86313235ec4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.d"],"deps-style":"makefile","signature":"78274a0284d1c9c6ef65c2e38fa794fa"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.d"],"deps-style":"makefile","signature":"7fe47d5033911c8e476444dc72e03adf"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.d"],"deps-style":"makefile","signature":"b7607a6e0c91db3e0e3dd2abab550c3a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.d"],"deps-style":"makefile","signature":"d8c629bf5c8e5bc23b14d75d42d64e90"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.d"],"deps-style":"makefile","signature":"1270b0c7b34a943f1b17571b002cc03a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cms/cms.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cms/cms.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cms/cms.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cms/cms.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.d"],"deps-style":"makefile","signature":"01d492a482e1220a58e0e6c2c7eef49c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.d"],"deps-style":"makefile","signature":"f90409ec7c216415f52e47c4d7039dde"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/co-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.d"],"deps-style":"makefile","signature":"9971f5c99cffb7db6d6e6d148bea48f8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/conf/conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/conf/conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/conf/conf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/conf/conf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.d"],"deps-style":"makefile","signature":"202dd695a7dab1e5b5ab74bbce8e1d40"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/convert.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/convert.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/convert.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/convert.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.d"],"deps-style":"makefile","signature":"358033d25d7a01d52572f3b86c430236"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_apple.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_apple.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_apple.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_apple.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.d"],"deps-style":"makefile","signature":"df11be802a90c94db1b57fe5d4156370"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_fuchsia.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_fuchsia.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_fuchsia.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_fuchsia.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.d"],"deps-style":"makefile","signature":"d4b74053d9f7ecbcb199bacf691a790f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_linux.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_linux.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.d"],"deps-style":"makefile","signature":"70df3b30cc25904ebe953f2464bf8517"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_openbsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_openbsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_openbsd.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_openbsd.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.d"],"deps-style":"makefile","signature":"ac5c33f7748021d0fb599240d173dcfb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_sysreg.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_sysreg.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_sysreg.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_sysreg.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.d"],"deps-style":"makefile","signature":"4f9c7e7516aca63b7f801de47cbf2818"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_win.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_aarch64_win.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.d"],"deps-style":"makefile","signature":"5c16e35c205a18d565aa5c643c4704d0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_freebsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_freebsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_freebsd.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_freebsd.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.d"],"deps-style":"makefile","signature":"3faea4965240b7ab24df7ad71dc59550"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_linux.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_arm_linux.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.d"],"deps-style":"makefile","signature":"1cd129dac89eef9e3fd246be47b902cc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_intel.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_intel.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_intel.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cpu_intel.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.d"],"deps-style":"makefile","signature":"2de0fbb396120c3d3c51fe374b1f0db0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/crypto.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/crypto.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/crypto.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/crypto.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.d"],"deps-style":"makefile","signature":"0d81c5c061d52b9e76d07f0563111948"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.d"],"deps-style":"makefile","signature":"c1c5c0d9e3da21e735e20787dd46685c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519_64_adx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519_64_adx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519_64_adx.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/curve25519_64_adx.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.d"],"deps-style":"makefile","signature":"526595c499884b29a00ae2378158a1a3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/derive_key.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/derive_key.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/derive_key.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/derive_key.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.d"],"deps-style":"makefile","signature":"553c5fed090d6cd6572d69428634d00d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/des/des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/des/des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/des/des.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/des/des.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.d"],"deps-style":"makefile","signature":"39f6017ca6551911bf071f4aa2c4302b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/deterministic.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/deterministic.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/deterministic.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/deterministic.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.d"],"deps-style":"makefile","signature":"3a74826063ac61eb1522ffd198df6b9e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/dh_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/dh_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.d"],"deps-style":"makefile","signature":"68606732a75c2b61aea90ab16010e9c7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/digest/digest_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/digest/digest_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/digest/digest_extra.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/digest/digest_extra.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.d"],"deps-style":"makefile","signature":"71e18b529461e7b2c918151a07d2a92b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/div.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/div.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/div.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/div.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.d"],"deps-style":"makefile","signature":"98e26dec692ddaa5cdd61dceb08ba105"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.d"],"deps-style":"makefile","signature":"9f22571d1e15d97af6a51a04abea674a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dsa/dsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.d"],"deps-style":"makefile","signature":"4d15ccb5bf5f9fe361503409978fd5dc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesctrhmac.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesctrhmac.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesctrhmac.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesctrhmac.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.d"],"deps-style":"makefile","signature":"8a4cf4d11b0d7f24189c89554c703c8b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aeseax.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aeseax.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aeseax.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aeseax.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.d"],"deps-style":"makefile","signature":"9b2de19d28837764945b37df4a4c2230"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesgcmsiv.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesgcmsiv.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesgcmsiv.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_aesgcmsiv.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.d"],"deps-style":"makefile","signature":"d58f5d1b515ecac4a02d5963ea23191b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_chacha20poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_chacha20poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_chacha20poly1305.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_chacha20poly1305.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.d"],"deps-style":"makefile","signature":"6f2592e5904647f3773cbb1ac0774ce1"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_des.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_des.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.d"],"deps-style":"makefile","signature":"590e603debf79864113059cab2610aac"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_null.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_null.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_null.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_null.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.d"],"deps-style":"makefile","signature":"f7f89ddd32d44ac3037572e9bb6aa853"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.d"],"deps-style":"makefile","signature":"a00488055c82779e774cfb1449c3cc52"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc4.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_rc4.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.d"],"deps-style":"makefile","signature":"374ef0fae75f287b4760b9dbacb77236"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_tls.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_tls.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_tls.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/e_tls.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.d"],"deps-style":"makefile","signature":"8a0aa06c06b0ff8bc70365a43f1188db"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.d"],"deps-style":"makefile","signature":"2c99de5a34ea7cd17cf8ac8969dc76c8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_derive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_derive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_derive.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/ec_derive.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.d"],"deps-style":"makefile","signature":"6d4bf89f5958de3d9b882315bdcf992b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdh/ecdh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdh/ecdh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdh/ecdh.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdh/ecdh.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.d"],"deps-style":"makefile","signature":"244b40bc7a175e7e4377cbd0d1a0aade"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.d"],"deps-style":"makefile","signature":"c5278f8463f296283efdbf4e6bc89533"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_p1363.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_p1363.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_p1363.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ecdsa/ecdsa_p1363.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.d"],"deps-style":"makefile","signature":"52897cc808e7c33e7bd73c3c0cd716bd"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/engine/engine.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/engine/engine.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/engine/engine.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/engine/engine.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.d"],"deps-style":"makefile","signature":"f49f6c2d3fc6b81f307b0544ea926a2c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/err/err.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/err/err.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/err/err.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/err/err.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.d"],"deps-style":"makefile","signature":"8c9933533194865fc202f710e3eb27dd"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/err_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/err_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/err_data.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/err_data.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.d"],"deps-style":"makefile","signature":"b160d852c738806d8a2534dc2b0c2614"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/errno.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/errno.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/errno.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/errno.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.d"],"deps-style":"makefile","signature":"0f3662b6cd49bdd689c7f296ebb38378"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.d"],"deps-style":"makefile","signature":"ef63e103fb8446738a1c7c867dffa578"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.d"],"deps-style":"makefile","signature":"991167458eeec554fa84828103e9c830"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_ctx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_ctx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_ctx.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/evp_ctx.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.d"],"deps-style":"makefile","signature":"6b8b9552a0370eed06e0620ae57e3a28"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ex_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ex_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ex_data.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ex_data.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.d"],"deps-style":"makefile","signature":"27fc88125fb99fb8efa885525f1f992b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/exponentiation.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/exponentiation.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/exponentiation.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/exponentiation.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.d"],"deps-style":"makefile","signature":"c71ae3f84d4a563ed7ce1f4dac0db47a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_int.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_int.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.d"],"deps-style":"makefile","signature":"82dd1b395591937f81f128b7193fca34"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_string.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_string.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_string.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/f_string.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.d"],"deps-style":"makefile","signature":"f78827e3746bd59e7c82c3b6a69f318f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/fd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/fd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/fd.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/fd.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.d"],"deps-style":"makefile","signature":"7a09d2fff196dd1e67a52c75b2b0f960"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.d"],"deps-style":"makefile","signature":"3de31a2199a056a422a7677539d13d65"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.d"],"deps-style":"makefile","signature":"c9e67e22cb3dc09bc2a240b7caf68256"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.d"],"deps-style":"makefile","signature":"7764c02907a9f62f898ad92b76891f46"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.d"],"deps-style":"makefile","signature":"26d8d2a88efe6e963091a051719fa6df"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/file.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/file.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.d"],"deps-style":"makefile","signature":"13c5d123c7a895e79c0ad59ad631b5a0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/fips_shared_support.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/fips_shared_support.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/fips_shared_support.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fipsmodule/fips_shared_support.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.d"],"deps-style":"makefile","signature":"d61679130ac9d9d8e8c0f6da23be040e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/fork_detect.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/fork_detect.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/fork_detect.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/fork_detect.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.d"],"deps-style":"makefile","signature":"85177a994fa1077fa5a61cca94ce9b16"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/forkunsafe.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/forkunsafe.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/forkunsafe.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/forkunsafe.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.d"],"deps-style":"makefile","signature":"620fa07b3dac5d51171a65cdc8c93fb0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fuzzer_mode.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fuzzer_mode.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fuzzer_mode.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/fuzzer_mode.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.d"],"deps-style":"makefile","signature":"c6d15dc4e3aba78a2b6e4c4124c3bffa"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/get_cipher.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/get_cipher.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/get_cipher.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/get_cipher.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.d"],"deps-style":"makefile","signature":"881980a006e1aea5b6940c1bd127dc91"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/getentropy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/getentropy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/getentropy.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/getentropy.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.d"],"deps-style":"makefile","signature":"e16c46e39774bc6612b0b614256a3a9d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.d"],"deps-style":"makefile","signature":"16bbcf8a033f868153320037d7ac8dcb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.d"],"deps-style":"makefile","signature":"aa5656152ad90df994336a1d3bbfc190"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.d"],"deps-style":"makefile","signature":"e6501325b682b6706e066ff14b59b75b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-neon-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.d"],"deps-style":"makefile","signature":"7924008936a8262a2c0bb16aeff72f1b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.d"],"deps-style":"makefile","signature":"4eddf9ef7a3dacdcb93ec3721f8283d0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.d"],"deps-style":"makefile","signature":"f3fc4bb1bb26f730511f48d2e9806a3e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.d"],"deps-style":"makefile","signature":"bdf4fd472c2c11c2981349321bf530cb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.d"],"deps-style":"makefile","signature":"7fdc0608cf492d5f716fc14f4388e6b9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.d"],"deps-style":"makefile","signature":"9079962fed091c352ff2eb8a4adffcbc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.d"],"deps-style":"makefile","signature":"23a241055279f6f85dd9f123022105c0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.d"],"deps-style":"makefile","signature":"d91a795528efad975b2e2259a0843520"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghash-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.d"],"deps-style":"makefile","signature":"e3c1a19e401b1ee0be2352cf8173bc41"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.d"],"deps-style":"makefile","signature":"f8948bee2a67596e0838c52ef7e78c47"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.d"],"deps-style":"makefile","signature":"5fd9720e786297c3740b4b68d117136d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.d"],"deps-style":"makefile","signature":"91a71f526762a610b6c8ae53ce1672e2"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/ghashv8-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.d"],"deps-style":"makefile","signature":"8dcb4f4f3f95e4691dba1b30da816937"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/hash_to_curve.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/hash_to_curve.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/hash_to_curve.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/ec/hash_to_curve.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.d"],"deps-style":"makefile","signature":"e0c569d9d0d372d857eb578c9cb13829"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/hexdump.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/hexdump.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/hexdump.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/hexdump.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.d"],"deps-style":"makefile","signature":"19e0e02055f33d91d41de2976c322648"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hpke/hpke.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hpke/hpke.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hpke/hpke.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hpke/hpke.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.d"],"deps-style":"makefile","signature":"018cc4671a2ecfea022d1e8f1cc6daf7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/hrss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/hrss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/hrss.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/hrss.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.d"],"deps-style":"makefile","signature":"e61b153fe96aa08752db72b961b3de5d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/i2d_pr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/i2d_pr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/i2d_pr.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/i2d_pr.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.d"],"deps-style":"makefile","signature":"ab3cda53c97bc0f11b16cccddc997365"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/ios.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/ios.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/ios.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/ios.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.d"],"deps-style":"makefile","signature":"a4db47cde9905626349a894f981cfd61"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/kyber/kyber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/kyber/kyber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/kyber/kyber.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/kyber/kyber.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.d"],"deps-style":"makefile","signature":"b84cdc555ba7413a9ab91cf64d3804f0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/lhash/lhash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/lhash/lhash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/lhash/lhash.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/lhash/lhash.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.d"],"deps-style":"makefile","signature":"5a561aab03e9cd14288d404020746685"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md4/md4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md4/md4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md4/md4.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md4/md4.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.d"],"deps-style":"makefile","signature":"a9cef054f28ccf4edbfa6bc3e0eee0b5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.d"],"deps-style":"makefile","signature":"24a1c694fea63059f2201b698acf7503"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.d"],"deps-style":"makefile","signature":"ace1cab5174d9a801f5f99b05639590b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.d"],"deps-style":"makefile","signature":"0cf45109fa67e649ea8912b1ac6c3fc1"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/crypto/md5-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.d"],"deps-style":"makefile","signature":"6fed0b5732489ec7af1d56db9b0b215a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md5/md5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md5/md5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md5/md5.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/md5/md5.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.d"],"deps-style":"makefile","signature":"aac6a2e2a0c1a4ce8d8ca0b13da4aaf8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mem.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mem.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.d"],"deps-style":"makefile","signature":"e4c223d917d6a36f9fd9eee8c972aeee"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mldsa/mldsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mldsa/mldsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mldsa/mldsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mldsa/mldsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.d"],"deps-style":"makefile","signature":"c035c52b8f80918ed63fa78f70e88ce9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mlkem/mlkem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mlkem/mlkem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mlkem/mlkem.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/mlkem/mlkem.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.d"],"deps-style":"makefile","signature":"c109845d816b6aadb1d86454eec69bf5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/name_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/name_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/name_print.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/name_print.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.d"],"deps-style":"makefile","signature":"bb7bfab79b835125ea7cbc70b2a9172e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.d"],"deps-style":"makefile","signature":"57e3f7a3731613bcb360587b9cf48257"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj_xref.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj_xref.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj_xref.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/obj/obj_xref.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.d"],"deps-style":"makefile","signature":"3f455a804c9560c40ef278feb714b68f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.d"],"deps-style":"makefile","signature":"6867ae11c5a8e056a0f041d470802095"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.d"],"deps-style":"makefile","signature":"212fcc0249359dbcc5584e1025cfedbd"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-armv8-asm-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.d"],"deps-style":"makefile","signature":"07581fa08c88f33f1fdd592078a1779c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.d"],"deps-style":"makefile","signature":"7122ffc8c7ffd5f60ca2e899cb8b94a0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256-x86_64-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.d"],"deps-style":"makefile","signature":"6139d5fc72dab3229ddb3f8cadf3454d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.d"],"deps-style":"makefile","signature":"6a90f41298da04df417b33313ef004af"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.d"],"deps-style":"makefile","signature":"3deb478e418d4d89add6f413f4e6fc86"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.d"],"deps-style":"makefile","signature":"4197207039bbbc9c7a967ae78f9e3ccf"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.d"],"deps-style":"makefile","signature":"123818752b0a12a4aaac002af87942c8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.d"],"deps-style":"makefile","signature":"f93be3cd1afebdb1106cead3d76c3b95"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/p5_pbev2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/p5_pbev2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/p5_pbev2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/p5_pbev2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.d"],"deps-style":"makefile","signature":"6daf27b8d151542f5f5924f533f02cec"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.d"],"deps-style":"makefile","signature":"805a67bc914264d9853ae369ef98c376"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dh_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.d"],"deps-style":"makefile","signature":"305a18b83c2f0b879c51ae1847bc82af"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_dsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.d"],"deps-style":"makefile","signature":"bdc3656994a7972ca9a9782f44dfd48c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.d"],"deps-style":"makefile","signature":"c0bb279e3624ed3e408f191153394884"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ec_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.d"],"deps-style":"makefile","signature":"9c26bc1ca08a9bf3edff108c130251b4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.d"],"deps-style":"makefile","signature":"3c1a31ce85befd20ff6cc0a97121c205"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_ed25519_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.d"],"deps-style":"makefile","signature":"5b11d20c1031e3f6dd57fce78c1f2188"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_hkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_hkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_hkdf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_hkdf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.d"],"deps-style":"makefile","signature":"fbdc98f6a10221203a4749fe7466da34"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.d"],"deps-style":"makefile","signature":"d8acd71c123a6abe7417949fe4d20c9a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_rsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.d"],"deps-style":"makefile","signature":"63b6ba7bcae5a55024aac7f911f0d265"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.d"],"deps-style":"makefile","signature":"935437c7c416477fa5c3facbd5cf41db"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/p_x25519_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.d"],"deps-style":"makefile","signature":"d0d1fdb45e57d23bdfd9edbf486e5f0a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/pair.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/pair.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/pair.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/pair.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.d"],"deps-style":"makefile","signature":"8e85c9313a197c686432cee881398f5c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/params.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/params.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/params.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/dh/params.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.d"],"deps-style":"makefile","signature":"2be997e46639c24050f1600ac68eaed3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/passive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/passive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/passive.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/passive.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.d"],"deps-style":"makefile","signature":"96a9423b091c63c4920730f3c113c50a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/pbkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/pbkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/pbkdf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/pbkdf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.d"],"deps-style":"makefile","signature":"a6585a23a5d3d1b94ffc971fa7943ef6"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_all.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_all.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.d"],"deps-style":"makefile","signature":"a63aef5949edd497488ee52d344759e7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_info.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_info.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.d"],"deps-style":"makefile","signature":"edc9335c59366e44064b0cc46105ad7e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.d"],"deps-style":"makefile","signature":"1bdf8d9ed1d7332f785b037e749b173a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_oth.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_oth.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_oth.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_oth.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.d"],"deps-style":"makefile","signature":"fe6baa84e3532442dd1a613a8bd05ed3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pk8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pk8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pk8.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pk8.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.d"],"deps-style":"makefile","signature":"ba9247d0064d74d8b3ff77b3a6fee143"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pkey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_pkey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.d"],"deps-style":"makefile","signature":"c19a559fe771c3b98b61d3a17a0ca6cd"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.d"],"deps-style":"makefile","signature":"1e566e892ce526600147cc444a202dc7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_xaux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_xaux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_xaux.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pem/pem_xaux.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.d"],"deps-style":"makefile","signature":"358fe20c581c979e9a8660bcfe39cc31"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.d"],"deps-style":"makefile","signature":"a4d16801c7eed92fa151995bbdba4e90"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs7/pkcs7_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.d"],"deps-style":"makefile","signature":"ead72560af01bb2b62e1043b1a1f965b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.d"],"deps-style":"makefile","signature":"3b9fbe646ffaee54b5eefdabfbb4425d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pkcs8/pkcs8_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.d"],"deps-style":"makefile","signature":"ba0e5bb6a789075d34d7b8697d528b31"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/pmbtoken.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/pmbtoken.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/pmbtoken.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/pmbtoken.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.d"],"deps-style":"makefile","signature":"1f562ef9e9ee4dcca8fcc36aff629385"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/policy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/policy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/policy.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/policy.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.d"],"deps-style":"makefile","signature":"4a2f27a5c806ad4401d5a4f93a0a9d83"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.d"],"deps-style":"makefile","signature":"220ca74116ad82ec2bfbee38b02efb8b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.d"],"deps-style":"makefile","signature":"743a390f37b7d4f039aaa392b65d31e9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm_asm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm_asm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm_asm.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_arm_asm.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.d"],"deps-style":"makefile","signature":"f0f42db9cb63fe3ae59bd7d144bfc82b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_vec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_vec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_vec.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/poly1305/poly1305_vec.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.d"],"deps-style":"makefile","signature":"5462df0c746b65534072bed335927a6d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/asm/poly_rq_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/asm/poly_rq_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/asm/poly_rq_mul.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/hrss/asm/poly_rq_mul.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.d"],"deps-style":"makefile","signature":"000a41a8491f79152c317680e7d477f4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pool/pool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pool/pool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pool/pool.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/pool/pool.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.d"],"deps-style":"makefile","signature":"c95a3ba7dd271fb515d593ce401f715d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/posix_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/posix_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/posix_time.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/posix_time.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.d"],"deps-style":"makefile","signature":"838240c1c10a4f258f5b5307536940ae"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/print.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/print.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.d"],"deps-style":"makefile","signature":"bf5e8dc0499f06b9a32fa0cb09c7a3a0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/printf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/printf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/printf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bio/printf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.d"],"deps-style":"makefile","signature":"09f446273f6a90c9997680c0137310d3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/rand.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/rand.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/rand.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/rand.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.d"],"deps-style":"makefile","signature":"5c51d2df7fb2c5ebf7dc58d69021c2cf"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rc4/rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rc4/rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rc4/rc4.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rc4/rc4.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.d"],"deps-style":"makefile","signature":"539ceb2f56851f5b0c525d84eca91cf8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.d"],"deps-style":"makefile","signature":"559d3cca1cae50568d1a6e8e9435b43b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rdrand-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.d"],"deps-style":"makefile","signature":"c8141f1e2cafeeaafee1d94dbe26387b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/refcount.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/refcount.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/refcount.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/refcount.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.d"],"deps-style":"makefile","signature":"72cca3386058eeb540c4695eaf1a4a68"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o"]},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.d"],"deps-style":"makefile","signature":"ce2762bb11b44462f1f83ccbd067a249"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_crypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_crypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_crypt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_crypt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.d"],"deps-style":"makefile","signature":"0ef2e8efbb3bccd66d3cb27e0b1fdbe6"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_extra.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_extra.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.d"],"deps-style":"makefile","signature":"290a2dc4ba337761bdb371a848c3838a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_print.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rsa/rsa_print.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.d"],"deps-style":"makefile","signature":"17c757ddf4b98465515c5d06845ee24a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/rsa_pss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/rsa_pss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/rsa_pss.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/rsa_pss.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.d"],"deps-style":"makefile","signature":"835dddd769aeec8b54ff81945ab79d3b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.d"],"deps-style":"makefile","signature":"7a62e1cb468e702e23af7691cbfc4e70"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/rsaz-avx2-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.d"],"deps-style":"makefile","signature":"8396d1df989e797ef484107ad2942914"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/scrypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/scrypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/scrypt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/scrypt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.d"],"deps-style":"makefile","signature":"d43ed43480be6994723dd0ca06b25e4b"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.d"],"deps-style":"makefile","signature":"418cc53b90a8ff912a5ba5d7a1bc837e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.d"],"deps-style":"makefile","signature":"bbe209edcd3e15b345041472e9aec147"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv4-large-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv4-large-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv4-large-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv4-large-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.d"],"deps-style":"makefile","signature":"b5c93e9f885c1f2b3764e47e00a37047"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.d"],"deps-style":"makefile","signature":"a333f7c74472fa7c2eb8a2cc78a1c90f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.d"],"deps-style":"makefile","signature":"7edcc7608fcdf4538c5358c2790144be"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.d"],"deps-style":"makefile","signature":"7724c5b4f9836338ac288ef5d0711a5f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.d"],"deps-style":"makefile","signature":"14e089a9b1a69f3bd3f1f7551cb599de"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha1-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.d"],"deps-style":"makefile","signature":"c9a93f3b7a5b92a96b83da54dfbf40f9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.d"],"deps-style":"makefile","signature":"3801b4ae5159a4ed61601350605a7609"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.d"],"deps-style":"makefile","signature":"d278baa9cd731aa0bc731326de1d8ce3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.d"],"deps-style":"makefile","signature":"c71cec859af73df48c71e90f4ae33620"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.d"],"deps-style":"makefile","signature":"fc3d52c0f222ac53a27812d4d924f609"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.d"],"deps-style":"makefile","signature":"0e73aa024421dd3cff10235bfa3e88aa"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.d"],"deps-style":"makefile","signature":"cacb3b1c140433bd371e164320cd25c8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.d"],"deps-style":"makefile","signature":"b0157ed408663c98114e74ec0da31019"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.d"],"deps-style":"makefile","signature":"eeec21944fb22c5c5e214df33a88e3db"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha256-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.d"],"deps-style":"makefile","signature":"dcd93c26493bd30f92138b4774962fa1"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha256.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha256.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha256.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha256.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.d"],"deps-style":"makefile","signature":"252e52e0652d464e90893d70c7faa41c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.d"],"deps-style":"makefile","signature":"d905aff20fee051c7ccb7a7ca70d9487"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.d"],"deps-style":"makefile","signature":"64cd69000bcf7a446cee18948041c6aa"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.d"],"deps-style":"makefile","signature":"7a40ef11a4698d888233a1441b09d96c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.d"],"deps-style":"makefile","signature":"ca78b3df8198ab17371485ec211eb87d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.d"],"deps-style":"makefile","signature":"5994bf0f5ec7c729cd0d6db7806573a8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.d"],"deps-style":"makefile","signature":"56abf89ba8573f37509deefddf9189de"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.d"],"deps-style":"makefile","signature":"1388e492fc9ef43f1c3d5e5a49b7e539"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/sha512-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.d"],"deps-style":"makefile","signature":"cf7f5042c8d72f648a31e9c51e37421f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha512.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha512.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha512.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/sha/sha512.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.d"],"deps-style":"makefile","signature":"2ce7bf686a03767aa93fc9b066be631e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/sign.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/evp/sign.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.d"],"deps-style":"makefile","signature":"3cad8537780af29966eca002823113ce"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/siphash/siphash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/siphash/siphash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/siphash/siphash.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/siphash/siphash.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.d"],"deps-style":"makefile","signature":"fc79a3824bd8ffa83bdc1f9789700c67"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/slhdsa/slhdsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/slhdsa/slhdsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/slhdsa/slhdsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/slhdsa/slhdsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.d"],"deps-style":"makefile","signature":"cc42594ccb4fb117a980afcdc1a177ce"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/spake25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/spake25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/spake25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/spake25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.d"],"deps-style":"makefile","signature":"a98d4b3e09115a4be27aa6bdd3e52886"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/spake2plus/spake2plus.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/spake2plus/spake2plus.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/spake2plus/spake2plus.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/spake2plus/spake2plus.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.d"],"deps-style":"makefile","signature":"6bfbe51c47f1745483236ec85964834d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/sqrt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/sqrt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/sqrt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bn/sqrt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.d"],"deps-style":"makefile","signature":"2abf185c054c39893e7bc8c37f977100"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/stack/stack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/stack/stack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/stack/stack.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/stack/stack.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.d"],"deps-style":"makefile","signature":"5e313bdf87d915cdae64d6e8aaa6a029"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_crl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_crl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.d"],"deps-style":"makefile","signature":"638ef0c2850ad1e92d871e70599197bc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_req.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_req.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.d"],"deps-style":"makefile","signature":"bc3de1ac552965058e90c12bf6857e70"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.d"],"deps-style":"makefile","signature":"4aa70ba3257717b987c2847932a9ffd7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509a.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/t_x509a.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.d"],"deps-style":"makefile","signature":"d68b48ba2eae40bababb04c6ef85f5e8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_dec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_dec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_dec.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_dec.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.d"],"deps-style":"makefile","signature":"cc748504528e54cec89b70322cec5794"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_enc.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_enc.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.d"],"deps-style":"makefile","signature":"3307264c0f03b1787884c7ddfa467ca0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_fre.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_fre.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_fre.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_fre.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.d"],"deps-style":"makefile","signature":"5478b188509f2d92165da6a18d1ea6cb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_new.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_new.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_new.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_new.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.d"],"deps-style":"makefile","signature":"2b6d604fa6c24f174754798ce7c84e88"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_typ.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_typ.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_typ.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_typ.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.d"],"deps-style":"makefile","signature":"743686a5e5728877e40973284b990d4c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_utl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/asn1/tasn_utl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.d"],"deps-style":"makefile","signature":"3a63f34efbfabaf20a90be5e753ae295"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.d"],"deps-style":"makefile","signature":"23dcb1efdd5e17403df1250399bcf503"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_none.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_none.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_none.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_none.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.d"],"deps-style":"makefile","signature":"08a6067601cb2335c6353e96407b03af"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_pthread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_pthread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_pthread.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_pthread.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.d"],"deps-style":"makefile","signature":"adc7d18dc7a891f0937015f264b296bd"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_win.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/thread_win.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.d"],"deps-style":"makefile","signature":"a4b9d80220b37ade0bb13fbc85a9d0b4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/tls_cbc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/tls_cbc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/tls_cbc.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/cipher/tls_cbc.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.d"],"deps-style":"makefile","signature":"9009b566db2b1f11e7414631e91a8d3c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/trust_token.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/trust_token.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/trust_token.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/trust_token.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.d"],"deps-style":"makefile","signature":"0eb00a3b416164918a7afaf04a0beb13"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/trusty.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/trusty.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/trusty.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/trusty.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.d"],"deps-style":"makefile","signature":"25052680ad6bdb6531ddd31096727b14"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/unicode.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/unicode.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/unicode.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/bytestring/unicode.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.d"],"deps-style":"makefile","signature":"503cb408f8853495753c6e084716c8db"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/urandom.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/urandom.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/urandom.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/urandom.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.d"],"deps-style":"makefile","signature":"8e8aa7f7f883f2974b8958319a2ab4e4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.d"],"deps-style":"makefile","signature":"cc91738708a0a66d63e6beb539c3f72f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akeya.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akeya.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akeya.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_akeya.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.d"],"deps-style":"makefile","signature":"aed50d2a2248ba048bc7d5f6eb6d3007"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_alt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_alt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_alt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_alt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.d"],"deps-style":"makefile","signature":"6a74481991bd7d2f3a22a8ae348a1151"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bcons.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bcons.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.d"],"deps-style":"makefile","signature":"55a20e1627ac46cf729650156e5c0c8a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bitst.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bitst.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bitst.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_bitst.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.d"],"deps-style":"makefile","signature":"53733c6c2505fe076b0344c3d4c36648"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_conf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_conf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.d"],"deps-style":"makefile","signature":"33e5478589a5a124764e63f995639953"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_cpols.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_cpols.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_cpols.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_cpols.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.d"],"deps-style":"makefile","signature":"32d1d4b0a118f103c3a63d8cf13adaf8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_crld.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_crld.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_crld.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_crld.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.d"],"deps-style":"makefile","signature":"c9ab108e22e498b97622da8d97efeac0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_enum.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_enum.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_enum.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_enum.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.d"],"deps-style":"makefile","signature":"9d979ab652c8c03b1d1c2b993e6a07ca"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_extku.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_extku.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_extku.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_extku.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.d"],"deps-style":"makefile","signature":"7c03aaa27614721bc73a5ac407dfafcc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_genn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_genn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_genn.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_genn.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.d"],"deps-style":"makefile","signature":"93eee10719288870cf2674da09f9a6fc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ia5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ia5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ia5.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ia5.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.d"],"deps-style":"makefile","signature":"fc964d09341d51c101503cdfc8a3b0f0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_info.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_info.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.d"],"deps-style":"makefile","signature":"cd05a462ec4149dc797a9b7e6b2856b0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_int.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_int.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.d"],"deps-style":"makefile","signature":"4454dfb30cc40ef9a238b8250988e54a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.d"],"deps-style":"makefile","signature":"0c69d01096616e28a1bb8e383dffe3a9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ncons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ncons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ncons.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ncons.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.d"],"deps-style":"makefile","signature":"b851f024c08c0ef5a40c08fec3566153"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ocsp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ocsp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ocsp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_ocsp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.d"],"deps-style":"makefile","signature":"2d19c59a9779072523d297915ef2a0cb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pcons.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pcons.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.d"],"deps-style":"makefile","signature":"4028f299c6d8b09a8a834f46f42a6444"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pmaps.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pmaps.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pmaps.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_pmaps.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.d"],"deps-style":"makefile","signature":"6e52cc058c79d49841523f9949463360"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_prn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_prn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_prn.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_prn.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.d"],"deps-style":"makefile","signature":"fd2e53bc5bd8965f206079f61ac7452f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_purp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_purp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_purp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_purp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.d"],"deps-style":"makefile","signature":"1cce3230e1e3242ac3893fec60086415"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_skey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_skey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_skey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_skey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.d"],"deps-style":"makefile","signature":"1b44d6045ab34827f630f30863a3aa11"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_utl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/v3_utl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.d"],"deps-style":"makefile","signature":"0fecd74820cf8357e20342431af9edce"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/voprf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/voprf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/voprf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/trust_token/voprf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.d"],"deps-style":"makefile","signature":"6310bc20fa1a5484863c57162bf4d05c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.d"],"deps-style":"makefile","signature":"ab915c5d5dc1bba773556b854c9ee722"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.d"],"deps-style":"makefile","signature":"fd6fa17e009adbf9eea48375b6db7ec5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.d"],"deps-style":"makefile","signature":"96dae3881b449ee0e9a34419b7634b26"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.d"],"deps-style":"makefile","signature":"e5e0dc18b5d9b5e26f119c8fa2d4c046"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.d"],"deps-style":"makefile","signature":"e728b754446dfa56dde9030eed991154"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.d"],"deps-style":"makefile","signature":"41f155c1380183baa73c6757dcf1efb0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.d"],"deps-style":"makefile","signature":"2802d9721c2423c3400a306d387819a7"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/vpaes-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.d"],"deps-style":"makefile","signature":"f8c68ed89717284783cf29d57e94bad5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/windows.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/windows.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/windows.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/rand/windows.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.d"],"deps-style":"makefile","signature":"8da9faead1f39794c5cc81376c63307d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.d"],"deps-style":"makefile","signature":"c2dbc0690d72cea67236c98fa7b518f2"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.d"],"deps-style":"makefile","signature":"1687b901555b58a14791332bc1f629e0"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_att.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_att.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_att.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_att.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.d"],"deps-style":"makefile","signature":"5547b91e1226316c4d9c0de0205eec79"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_cmp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_cmp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_cmp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_cmp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.d"],"deps-style":"makefile","signature":"e6fed9cf707a6452a9c1853188b3ffc9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_d2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_d2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_d2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_d2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.d"],"deps-style":"makefile","signature":"fe7bd6d77baecaaef299e9b989da2577"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_def.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_def.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_def.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_def.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.d"],"deps-style":"makefile","signature":"290d6cdc81f9821ea85b944bbedc3429"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_ext.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_ext.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_ext.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_ext.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.d"],"deps-style":"makefile","signature":"9da3bdee4cd4ed3f34f5edd981b609f2"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_lu.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_lu.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_lu.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_lu.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.d"],"deps-style":"makefile","signature":"f5dbd70c92c97424e1f61d8fa38b3f85"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_obj.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_obj.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.d"],"deps-style":"makefile","signature":"fc3fd56d07870c844f90aa628c9ac61d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_req.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_req.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.d"],"deps-style":"makefile","signature":"9d8684f2aa8aac9ec2086854be8cf6ae"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_set.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_set.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_set.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_set.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.d"],"deps-style":"makefile","signature":"074b11f06bb93b2add469c1958e8fb9a"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_trs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_trs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_trs.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_trs.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.d"],"deps-style":"makefile","signature":"ec3ecf7a5c8ec7029c4f17c3c4c1a74c"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_txt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_txt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_txt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_txt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.d"],"deps-style":"makefile","signature":"ce44252358c98be3448fcbee94c706a2"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_v3.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_v3.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_v3.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_v3.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.d"],"deps-style":"makefile","signature":"2cb35defe415dcc93bf40009e6446a60"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vfy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vfy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vfy.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vfy.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.d"],"deps-style":"makefile","signature":"245926bfb461c3a3f68b1501dd6f7ca2"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vpm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vpm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vpm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509_vpm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.d"],"deps-style":"makefile","signature":"919020b45e461a89d1a7e6061c628575"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509cset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509cset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509cset.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509cset.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.d"],"deps-style":"makefile","signature":"19fe5244c0a07ecfedc29b51a1c775c8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509name.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509name.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.d"],"deps-style":"makefile","signature":"4e50efddb96748b58446a0d2d78330fc"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509rset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509rset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509rset.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509rset.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.d"],"deps-style":"makefile","signature":"a7dac8df98a091733d668d0de84ae2db"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509spki.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x509spki.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.d"],"deps-style":"makefile","signature":"2bd6e1ecbe7fba0645f287b356b1a529"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.d"],"deps-style":"makefile","signature":"ecb1cd5c9a98b86016b9ba42d339c173"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.d"],"deps-style":"makefile","signature":"43a0eada35df9343ba56e488100c3a1e"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.d"],"deps-style":"makefile","signature":"41f68d08f5aeee21ab34d870bbd5d0c5"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.d"],"deps-style":"makefile","signature":"6bf5a0fa6c3a6a312e0a1039d40a5bf6"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.d"],"deps-style":"makefile","signature":"458a34e5998fe58759cb406efa1525d3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/gen/bcm/x86_64-mont5-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.d"],"deps-style":"makefile","signature":"b6a79ca2c6812808aa2b8059d2904ec8"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_algor.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_algor.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_algor.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_algor.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.d"],"deps-style":"makefile","signature":"f2fc6baa44fb8782b1bac7b10da314ab"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_all.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_all.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.d"],"deps-style":"makefile","signature":"c27b2f2c53cbbec9cabcdbe6af26c160"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_attrib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_attrib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_attrib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_attrib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.d"],"deps-style":"makefile","signature":"04a9681b4fa130238e850eb6937f6a5f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_crl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_crl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.d"],"deps-style":"makefile","signature":"e2b572ba1dcd0d2f6731b98a00e0045f"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_exten.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_exten.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_exten.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_exten.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.d"],"deps-style":"makefile","signature":"a0868e2f86c56bddb4efc75cf680177d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_name.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_name.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.d"],"deps-style":"makefile","signature":"ea3b2c9b3932dd7f419d7abf197205e4"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_pubkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_pubkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_pubkey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_pubkey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.d"],"deps-style":"makefile","signature":"4abb22f5f258bb03db42c40e02d7c4f9"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_req.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_req.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.d"],"deps-style":"makefile","signature":"4c9a89b09f3c8b252f5567e7f009e9eb"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_sig.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_sig.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_sig.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_sig.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.d"],"deps-style":"makefile","signature":"8f30607a607381e16374490cbf02d03d"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_spki.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_spki.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.d"],"deps-style":"makefile","signature":"ff914ce188ab4e695c396b8ed8c5ec05"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.d"],"deps-style":"makefile","signature":"b260af9a5cd23b0a99ec007ae3434458"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509a.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/x509/x_x509a.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.d"],"deps-style":"makefile","signature":"b8cc473be9a90f421fd94660c2a470b3"},"P1:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/xwing/xwing.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/xwing/xwing.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/xwing/xwing.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSL/crypto/xwing/xwing.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.d"],"deps-style":"makefile","signature":"35456f2f34cb0278cc9d5b53722cdbd4"},"P1:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o"]},"P1:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/shims.c","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o"]},"P1:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-atomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-atomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-atomics.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o"]},"P1:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-nioatomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-nioatomics.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOAtomics/src/c-nioatomics.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o"]},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bitstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bitstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bitstr.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bitstr.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.d"],"deps-style":"makefile","signature":"774b7e4ee1a6ca46226e28ecd867b341"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bool.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_bool.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.d"],"deps-style":"makefile","signature":"f40a1fae4ee82a1a8aa2b412331e9ba0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_d2i_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_d2i_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_d2i_fp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_d2i_fp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.d"],"deps-style":"makefile","signature":"822a463f43b11837ea6979aec38bba78"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_digest.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_digest.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_digest.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_digest.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.d"],"deps-style":"makefile","signature":"49fde2c57cf7fc94765dd3a003b80fbc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_dup.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_dup.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_dup.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_dup.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.d"],"deps-style":"makefile","signature":"522fdf1f4bb22ca7e1a13e4306ce40a4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_gentm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_gentm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_gentm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_gentm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.d"],"deps-style":"makefile","signature":"c48300253d17b70fcd61da25c09ed0a4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_i2d_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_i2d_fp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_i2d_fp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_i2d_fp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.d"],"deps-style":"makefile","signature":"9e6eb2f4649113c1a362e9cae63dcd07"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_int.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_int.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.d"],"deps-style":"makefile","signature":"c7beaec2ca6b60c8965ff19b60708e92"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_mbstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_mbstr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_mbstr.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_mbstr.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.d"],"deps-style":"makefile","signature":"b1eb7019fd4ebf3f60b8a8cdea637a38"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_object.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_object.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_object.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_object.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.d"],"deps-style":"makefile","signature":"f9c25c1f1ff8ddab1d602dd52f10c947"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_octet.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_octet.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_octet.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_octet.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.d"],"deps-style":"makefile","signature":"d799855b0310c4dba65a0db0bdfdbe31"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_sign.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_sign.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.d"],"deps-style":"makefile","signature":"2f2458a90c480b1880a742a7cf345ad4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strex.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strex.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strex.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strex.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.d"],"deps-style":"makefile","signature":"af0b56c8e11cba56ab463509d7c6226c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strnid.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strnid.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strnid.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_strnid.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.d"],"deps-style":"makefile","signature":"f0a295e4edb492e2778ae017fcc2f583"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_time.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_time.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.d"],"deps-style":"makefile","signature":"363d8b09067b2f3df477a426032b156e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_type.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_type.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_type.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_type.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.d"],"deps-style":"makefile","signature":"4d0ef5f8fc9a8bcdeaaddfd82539be58"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_utctm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_utctm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_utctm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/a_utctm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.d"],"deps-style":"makefile","signature":"5627a5203bc0c685d8dd99cd2ba3fb51"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_verify.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_verify.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_verify.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/a_verify.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.d"],"deps-style":"makefile","signature":"563cfeae6184cab4604353ac92f5b8f9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.d"],"deps-style":"makefile","signature":"9315b261c059762eeb90c25cf7fbc5a3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx10-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.d"],"deps-style":"makefile","signature":"5abbf3a46c81d46f5296f38c25b78d27"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.d"],"deps-style":"makefile","signature":"f51f38f1dcdbd5510bf073d014f8207e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aes-gcm-avx2-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.d"],"deps-style":"makefile","signature":"3d77ad1e877f03e99591b28056ae8c72"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.d"],"deps-style":"makefile","signature":"b5c9262a40a3206d551443e205fe0d14"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/aes128gcmsiv-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.d"],"deps-style":"makefile","signature":"9154753df3fa895a793d9cd376bdf18a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.d"],"deps-style":"makefile","signature":"688502f3387e6d3d2202ed7d182baa28"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-gcm-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.d"],"deps-style":"makefile","signature":"a54ad4b82e4251b1ef1b35c2fff58c75"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.d"],"deps-style":"makefile","signature":"ef7f5b7d85389bf1ced568d8661d5998"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.d"],"deps-style":"makefile","signature":"e775d70a707c2e35fb07f10387e53f34"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.d"],"deps-style":"makefile","signature":"cd196b3cd4c6739d8465218284771e88"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesni-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.d"],"deps-style":"makefile","signature":"030eb3a1aa6535cd1adcc35e768464bb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.d"],"deps-style":"makefile","signature":"340903eb5625a771ed5d8dc1be605b3d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.d"],"deps-style":"makefile","signature":"195176358b735274bc8770c6d6edf194"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.d"],"deps-style":"makefile","signature":"6a3fbff85d11afd07613cd55ede18513"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.d"],"deps-style":"makefile","signature":"68f3aaebd5d736bdb267d77202a37b87"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.d"],"deps-style":"makefile","signature":"dd9d37b0211b5d47dde7a92a8f968c64"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.d"],"deps-style":"makefile","signature":"96442289cffb26798e424c5ffb80d207"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/aesv8-gcm-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.d"],"deps-style":"makefile","signature":"6dfd5d94397156cf54d26ad5194e516c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/algorithm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/algorithm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/algorithm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/algorithm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.d"],"deps-style":"makefile","signature":"7b22b54ac6de6cade2bb3aaac1d5f5ea"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv4-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv4-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv4-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv4-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.d"],"deps-style":"makefile","signature":"8cc2997c8bc3ce99f9226c5125254149"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.d"],"deps-style":"makefile","signature":"c7765228d9719d3318f1c42aab889c63"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.d"],"deps-style":"makefile","signature":"5995599501275ec21861d1416fdd4d6b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/armv8-mont-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.d"],"deps-style":"makefile","signature":"c40f8408841a397b0264d10af688178f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/asn1_compat.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/asn1_compat.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/asn1_compat.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/asn1_compat.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.d"],"deps-style":"makefile","signature":"512b46aaeab654d917b2af1d128427b3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/asn1_gen.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/asn1_gen.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/asn1_gen.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/asn1_gen.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.d"],"deps-style":"makefile","signature":"2da8ebcfd944ae44d37597c9a7989ae8"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.d"],"deps-style":"makefile","signature":"4388b26b58872650e6263e71fd8a6c3e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_par.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_par.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_par.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn1_par.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.d"],"deps-style":"makefile","signature":"954814d412df7ac3b99b7bf6c6eb72fe"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn_pack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn_pack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn_pack.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/asn_pack.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.d"],"deps-style":"makefile","signature":"9ddb483c3a6db12383b0d35fab3705e5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/base64/base64.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/base64/base64.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/base64/base64.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/base64/base64.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.d"],"deps-style":"makefile","signature":"bc6a01f27164ee39647d2328aa446186"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/bcm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/bcm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/bcm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/bcm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.d"],"deps-style":"makefile","signature":"8d602548b74da11524a5043af1c0e49a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/ber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/ber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/ber.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/ber.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.d"],"deps-style":"makefile","signature":"23fe517062113a247cecb3d8907b6508"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.d"],"deps-style":"makefile","signature":"0447c4ca48b2db5938abd7c1489f80d0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio_mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio_mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio_mem.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/bio_mem.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.d"],"deps-style":"makefile","signature":"688ef4985476335d795631166cd25e6e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/bio_ssl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/bio_ssl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/bio_ssl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/bio_ssl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.d"],"deps-style":"makefile","signature":"48b8f476623e795f90ee5dfa95a14ce4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/blake2/blake2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/blake2/blake2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/blake2/blake2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/blake2/blake2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.d"],"deps-style":"makefile","signature":"5f20849e85b9b7664e0c9f4953c5023b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.d"],"deps-style":"makefile","signature":"ecad013c4a5d40176bb72d6b4a6292e7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.d"],"deps-style":"makefile","signature":"5abb4ce02e831bcc20f6c8eb2400529c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.d"],"deps-style":"makefile","signature":"0ce29cbca96d81fd83e78b988a6b56fc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.d"],"deps-style":"makefile","signature":"dcdf17625ba52158c828da26907ba8db"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bn-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.d"],"deps-style":"makefile","signature":"d6fbfea4771557e81e86b6d52cf0d4a0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/bn_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/bn_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/bn_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/bn_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.d"],"deps-style":"makefile","signature":"2aa4511cdad913b82a2114c9fbdf470d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bsaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bsaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bsaes-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/bsaes-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.d"],"deps-style":"makefile","signature":"9610e65fd67b7673a3c398664a926778"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/buf/buf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/buf/buf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/buf/buf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/buf/buf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.d"],"deps-style":"makefile","signature":"1d2257cd20b60426f7d365db51d7857d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_dir.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_dir.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_dir.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_dir.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.d"],"deps-style":"makefile","signature":"98892edd06320b077062bf64dbc7024b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_file.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/by_file.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.d"],"deps-style":"makefile","signature":"8a3c0735e91e10546490bead8c09f065"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbb.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbb.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbb.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbb.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.d"],"deps-style":"makefile","signature":"96395fe6c0f63fc5f338813e49d60144"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbs.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/cbs.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.d"],"deps-style":"makefile","signature":"78352ba9c7d68eef723625f8a9f1e91c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.d"],"deps-style":"makefile","signature":"62fc4c0840038e2f9cf221d9cb143259"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.d"],"deps-style":"makefile","signature":"2459f145e6bbfd052d288770f3a2d5c7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.d"],"deps-style":"makefile","signature":"57cb9d460b87fc629fcd5d82ad222959"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.d"],"deps-style":"makefile","signature":"cc32d0a1f63d735b35ae623d3a587de7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.d"],"deps-style":"makefile","signature":"041e69548626655cf64c0dd8a9b86e8e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.d"],"deps-style":"makefile","signature":"0d8c490b67a7ff712dfcc9fe7ca390b6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.d"],"deps-style":"makefile","signature":"07f3228141def445792ffb0b992c03ee"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.d"],"deps-style":"makefile","signature":"d924a1e4cd5c61b1b3234663335c0b64"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/chacha/chacha.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/chacha/chacha.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/chacha/chacha.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/chacha/chacha.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.d"],"deps-style":"makefile","signature":"bbf0e7f152072fdb9a4c4bfd7d88edd5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.d"],"deps-style":"makefile","signature":"bbf05f9cf52b6636799d303a08c097b1"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.d"],"deps-style":"makefile","signature":"0ad80e422053caab8ae382324ffbd050"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.d"],"deps-style":"makefile","signature":"0d9aee41c0835461afe4bb98f5d3608a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.d"],"deps-style":"makefile","signature":"71995b0c6205f31e7641e7bc089f95e3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/chacha20_poly1305_x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.d"],"deps-style":"makefile","signature":"5f334dc01f37040b043fc52a8e045c8e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.d"],"deps-style":"makefile","signature":"45fc88b26934e5f60343f336acaf78a6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/co-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.d"],"deps-style":"makefile","signature":"6388349759b1f33577f3a6151d1348ca"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/conf/conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/conf/conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/conf/conf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/conf/conf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.d"],"deps-style":"makefile","signature":"b4f7aae6c0c3ea54de33344ff391bd92"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/connect.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/connect.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/connect.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/connect.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.d"],"deps-style":"makefile","signature":"a771073d6003db1a1ee93f71836a537d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/convert.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/convert.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/convert.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bn/convert.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.d"],"deps-style":"makefile","signature":"5166d760ca5ac23f9dcc811a4c317f78"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_apple.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_apple.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_apple.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_apple.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.d"],"deps-style":"makefile","signature":"c37fc947e0e3ba26f33ed31988625635"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_fuchsia.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_fuchsia.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_fuchsia.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_fuchsia.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.d"],"deps-style":"makefile","signature":"8abd4e3a570e85784bf10bb0593f8bae"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_linux.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_linux.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.d"],"deps-style":"makefile","signature":"8208338b39214d57280ce7a1e2c02e58"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_openbsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_openbsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_openbsd.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_openbsd.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.d"],"deps-style":"makefile","signature":"c5a7b589cf26d798576944718e6a8817"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_sysreg.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_sysreg.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_sysreg.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_sysreg.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.d"],"deps-style":"makefile","signature":"24ea71af30b5e1d81f98621d7b3a4328"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_win.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_aarch64_win.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.d"],"deps-style":"makefile","signature":"16fd2e8b36ff5f542434f6e83f91845a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_freebsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_freebsd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_freebsd.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_freebsd.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.d"],"deps-style":"makefile","signature":"8bddce4cb9d4e75427882af5c6751fb6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_linux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_linux.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_arm_linux.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.d"],"deps-style":"makefile","signature":"d143d654d53dc79eca816106bc220ed7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_intel.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_intel.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_intel.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cpu_intel.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.d"],"deps-style":"makefile","signature":"d9d537589cb65d52479014262def3bc4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/crypto.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/crypto.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/crypto.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/crypto.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.d"],"deps-style":"makefile","signature":"17e2340213dc35921eca7ad81a857fa5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.d"],"deps-style":"makefile","signature":"03dc6101a502f7d24011cb8370c46f06"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519_64_adx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519_64_adx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519_64_adx.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/curve25519_64_adx.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.d"],"deps-style":"makefile","signature":"4d5e2c7634f724a34f18d575f51ec64e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_both.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_both.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_both.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_both.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.d"],"deps-style":"makefile","signature":"2c9833cd69c85c3d4aa555996251c0c3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.d"],"deps-style":"makefile","signature":"667b49d965808c50112acc4ca5d3e669"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_pkt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_pkt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_pkt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_pkt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.d"],"deps-style":"makefile","signature":"2fa937261d6babb7fbe2c761d43103fc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_srtp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_srtp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_srtp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/d1_srtp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.d"],"deps-style":"makefile","signature":"bc410fe76268ebb549e0e9e857d85f75"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/derive_key.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/derive_key.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/derive_key.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/derive_key.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.d"],"deps-style":"makefile","signature":"c40baa9415744bf45614a48b1c46f6bf"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/des/des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/des/des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/des/des.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/des/des.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.d"],"deps-style":"makefile","signature":"fc2d7e9163f888cc204de4b4f3da7ca9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/deterministic.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/deterministic.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/deterministic.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/deterministic.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.d"],"deps-style":"makefile","signature":"fdacc01a0c9de68b003b3af7cd5ee626"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/dh_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/dh_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.d"],"deps-style":"makefile","signature":"73ad686c039e277484ae7a837b87f8ce"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/digest/digest_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/digest/digest_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/digest/digest_extra.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/digest/digest_extra.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.d"],"deps-style":"makefile","signature":"3b85c0facc8ac5cad1fe5c40ac90fc8f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.d"],"deps-style":"makefile","signature":"4e6adebf14c365cd7ef5dba3b4089bbc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dsa/dsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.d"],"deps-style":"makefile","signature":"631d4b542f3b03a6b766aa157db5b2bf"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_method.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_method.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_method.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_method.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.d"],"deps-style":"makefile","signature":"d50bc8a4ca83a430f90c93b9716c4add"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_record.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_record.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_record.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/dtls_record.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.d"],"deps-style":"makefile","signature":"f968f1f3bfa1c258cdbaa5fdd07d0a7f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesctrhmac.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesctrhmac.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesctrhmac.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesctrhmac.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.d"],"deps-style":"makefile","signature":"89de1ccae80b411b11ea85c010a0a9bb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesgcmsiv.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesgcmsiv.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesgcmsiv.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_aesgcmsiv.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.d"],"deps-style":"makefile","signature":"5192fa064edd4365875525af09b3f0f4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_chacha20poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_chacha20poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_chacha20poly1305.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_chacha20poly1305.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.d"],"deps-style":"makefile","signature":"a5ec49af06dd48eaac11bc3468d2904c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_des.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_des.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_des.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.d"],"deps-style":"makefile","signature":"e26ec3ff5110bdf3444b68e300fbee06"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_null.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_null.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_null.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_null.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.d"],"deps-style":"makefile","signature":"98c8b64826a6956c00db32b6b0514b6f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.d"],"deps-style":"makefile","signature":"303c99a0652dfb0bc0b6e7509dffd783"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc4.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_rc4.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.d"],"deps-style":"makefile","signature":"c3902de858154ba8d54898e7b938cda9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_tls.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_tls.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_tls.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/e_tls.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.d"],"deps-style":"makefile","signature":"8261225133940147a901fd266f31339a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.d"],"deps-style":"makefile","signature":"f516a29cb77442c4d478827be993cf0d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_derive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_derive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_derive.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/ec_derive.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.d"],"deps-style":"makefile","signature":"bbaf4940cc37b6ae2323eeca3b5a1e44"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdh/ecdh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdh/ecdh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdh/ecdh.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdh/ecdh.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.d"],"deps-style":"makefile","signature":"1a7fcf1e07d1d5c2e5f3b976f71d9693"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdsa/ecdsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdsa/ecdsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdsa/ecdsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ecdsa/ecdsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.d"],"deps-style":"makefile","signature":"c803763d514d5566276d0361488eff9c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/encrypted_client_hello.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/encrypted_client_hello.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/encrypted_client_hello.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/encrypted_client_hello.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.d"],"deps-style":"makefile","signature":"94bd8d187419e5c0de32a0b491f396aa"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/engine/engine.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/engine/engine.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/engine/engine.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/engine/engine.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.d"],"deps-style":"makefile","signature":"f3a42d7678ec618a0a2bbb8c87cd7727"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/err/err.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/err/err.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/err/err.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/err/err.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.d"],"deps-style":"makefile","signature":"4a4190c7c51e35a52097a8f6a73e4fbe"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/err_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/err_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/err_data.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/err_data.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.d"],"deps-style":"makefile","signature":"3e05b9e767dfd09de7a28634a3d9436a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/errno.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/errno.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/errno.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/errno.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.d"],"deps-style":"makefile","signature":"db8fa8aa462745e6b3907868a4df8067"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.d"],"deps-style":"makefile","signature":"aae0808ae37bb8a01f61dd8c570c8372"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.d"],"deps-style":"makefile","signature":"014e3178d02ae8e86c58ba08795e0ebe"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_ctx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_ctx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_ctx.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/evp_ctx.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.d"],"deps-style":"makefile","signature":"d4e8950a9db199c1438f19553c06847e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ex_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ex_data.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ex_data.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ex_data.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.d"],"deps-style":"makefile","signature":"9c53825a569e4c19e07c404124d0835d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/extensions.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/extensions.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/extensions.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/extensions.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.d"],"deps-style":"makefile","signature":"320c34371846b5494ed520aaf2910875"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_int.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_int.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.d"],"deps-style":"makefile","signature":"354109338d6cc64b71bfb0dedfec9f51"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_string.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_string.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_string.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/f_string.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.d"],"deps-style":"makefile","signature":"5bea50de4234c2e710e8704dbf0f4f0a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/fd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/fd.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/fd.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/fd.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.d"],"deps-style":"makefile","signature":"f4cae05b9a7b43b128a0bba5b9173c3a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_mul.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.d"],"deps-style":"makefile","signature":"c76d27702d9cb18678ef770b54bdb7f8"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_curve25519_adx_square.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.d"],"deps-style":"makefile","signature":"b2ca8ae93a2f92c6d2dc9d3c972769a8"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_mul.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.d"],"deps-style":"makefile","signature":"83fb746bd56a1cbe491a3313bfd0c688"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/third_party/fiat/asm/fiat_p256_adx_sqr.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.d"],"deps-style":"makefile","signature":"a1e039dc5b8ed7dbaa3e40582ef5b998"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/file.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/file.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.d"],"deps-style":"makefile","signature":"f7f7098168d8892a869dfcfc85649194"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/fips_shared_support.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/fips_shared_support.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/fips_shared_support.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/fipsmodule/fips_shared_support.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.d"],"deps-style":"makefile","signature":"101d3a123ee2602affcdfae2138b51d9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/fork_detect.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/fork_detect.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/fork_detect.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/fork_detect.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.d"],"deps-style":"makefile","signature":"741f481e79924e5b64a3d9ede40816a5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/forkunsafe.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/forkunsafe.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/forkunsafe.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/forkunsafe.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.d"],"deps-style":"makefile","signature":"54b774492878823ed244f35c96383008"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/get_cipher.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/get_cipher.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/get_cipher.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/get_cipher.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.d"],"deps-style":"makefile","signature":"46698facd58f652ee22e0673cc62b686"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/getentropy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/getentropy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/getentropy.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/getentropy.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.d"],"deps-style":"makefile","signature":"72c853e4dbcf66db55b531a001ac9c60"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.d"],"deps-style":"makefile","signature":"6cfdccdee221ff89780316ed653e3f88"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.d"],"deps-style":"makefile","signature":"86f2eca0da6ada503407d78db1842025"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.d"],"deps-style":"makefile","signature":"045f41eec47bdf3cf55108b30d68d50e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-neon-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.d"],"deps-style":"makefile","signature":"c2dc705b2def5aa61790d7dc690be901"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.d"],"deps-style":"makefile","signature":"c3acca7db4364eb8894470934ad8d3f3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.d"],"deps-style":"makefile","signature":"0d27000bc8e864040c19cecfd7796227"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.d"],"deps-style":"makefile","signature":"1ca7d2f2f107196ae65de81cbfdc6be3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-ssse3-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.d"],"deps-style":"makefile","signature":"80178e94633e746a19ee674661f9890b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.d"],"deps-style":"makefile","signature":"281fd9cf1c35d11953781927f3c006d2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.d"],"deps-style":"makefile","signature":"d6e64eca247978b3fe3ff0c76fb8426b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.d"],"deps-style":"makefile","signature":"4b4d4c7c6a23d485974fe13388d099ae"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghash-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.d"],"deps-style":"makefile","signature":"1da7f3f26bdfe1ba44c26e3cc04993cf"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.d"],"deps-style":"makefile","signature":"5e041daa2318a07678cbec5ade5c2e6a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.d"],"deps-style":"makefile","signature":"0ecd21ba7656d94053a3a8fc7c60d7f1"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.d"],"deps-style":"makefile","signature":"04f0dde5b03ffe79f7bd580bd0f0f1c1"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/ghashv8-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.d"],"deps-style":"makefile","signature":"2560cefe5b84570c2c7d3faf0d5d852a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handoff.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handoff.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handoff.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handoff.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.d"],"deps-style":"makefile","signature":"1cbe622d712e152706308b4ae12791a9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.d"],"deps-style":"makefile","signature":"20d114e748c9fa165cca03dd918b1731"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_client.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_client.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_client.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_client.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.d"],"deps-style":"makefile","signature":"3cabf1edf446f9d43630fb05afd21f59"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_server.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_server.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_server.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/handshake_server.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.d"],"deps-style":"makefile","signature":"0cb6259af3d11b9ec9e536bb3b47b918"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/hash_to_curve.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/hash_to_curve.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/hash_to_curve.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/ec/hash_to_curve.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.d"],"deps-style":"makefile","signature":"f8c14e930a367d99a28f49f24ea23b6d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/hexdump.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/hexdump.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/hexdump.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/hexdump.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.d"],"deps-style":"makefile","signature":"8187d40c5f793c026e57b46448810813"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hpke/hpke.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hpke/hpke.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hpke/hpke.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hpke/hpke.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.d"],"deps-style":"makefile","signature":"03e89e8ed98121f86f3a193c9ed9042b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/hrss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/hrss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/hrss.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/hrss.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.d"],"deps-style":"makefile","signature":"d92eebd03c2606183e952a41bb7f3678"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/i2d_pr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/i2d_pr.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/i2d_pr.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/i2d_pr.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.d"],"deps-style":"makefile","signature":"c7989db158858e14e4a6a496a4fafda0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/ios.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/ios.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/ios.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/ios.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.d"],"deps-style":"makefile","signature":"48a0c1894afc2f9a01429682b8077a0f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/kyber/kyber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/kyber/kyber.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/kyber/kyber.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/kyber/kyber.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.d"],"deps-style":"makefile","signature":"d92f4cd44f65dc7b5184aaba544b2ce4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/lhash/lhash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/lhash/lhash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/lhash/lhash.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/lhash/lhash.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.d"],"deps-style":"makefile","signature":"682982af4e90885f424a71c07740e581"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md4/md4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md4/md4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md4/md4.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md4/md4.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.d"],"deps-style":"makefile","signature":"09683d778cfa8869a74cea529ccf6397"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.d"],"deps-style":"makefile","signature":"9121ed52d0bc3bb46a0640709a63bf6c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.d"],"deps-style":"makefile","signature":"e9943ad171c2d4a4ada9d9134b43591a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.d"],"deps-style":"makefile","signature":"f3b7a456c5b6157a962e17bdd200ba65"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/crypto/md5-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.d"],"deps-style":"makefile","signature":"1db3aa2ac1ea95669b029d9a3db8034c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md5/md5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md5/md5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md5/md5.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/md5/md5.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.d"],"deps-style":"makefile","signature":"d2b81c6f021932f373fa6fed72a9e6e3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mem.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mem.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.d"],"deps-style":"makefile","signature":"2243ef837215232e3a012f838c98e3e6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mldsa/mldsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mldsa/mldsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mldsa/mldsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mldsa/mldsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.d"],"deps-style":"makefile","signature":"5bdebd88343e899ed8a22bdc511dc2bd"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mlkem/mlkem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mlkem/mlkem.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mlkem/mlkem.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/mlkem/mlkem.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.d"],"deps-style":"makefile","signature":"5c4cac7b8d601c7d975348d1ca732845"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/name_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/name_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/name_print.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/name_print.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.d"],"deps-style":"makefile","signature":"82122ae9871fa2c1527871098e00fa99"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.d"],"deps-style":"makefile","signature":"14ed583fe3b6b2d8cd436d6fe818e2f2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj_xref.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj_xref.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj_xref.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/obj/obj_xref.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.d"],"deps-style":"makefile","signature":"2ad0d87d2f759f4e1c68370b60b4ab3f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.d"],"deps-style":"makefile","signature":"53a14137f96abaf8eba6cca217af9a17"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.d"],"deps-style":"makefile","signature":"4b46b6ef69f8ab876b712a8d7a2d553f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-armv8-asm-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.d"],"deps-style":"makefile","signature":"f8ccc5d1114b69e5336317150233a94b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.d"],"deps-style":"makefile","signature":"3c9fa615299d3bb0319ba34b4aae7994"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256-x86_64-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.d"],"deps-style":"makefile","signature":"d793015b1767126e5cfece64319eb7eb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.d"],"deps-style":"makefile","signature":"910401d8f2a8a248bacd6bf7b78858fc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.d"],"deps-style":"makefile","signature":"5fe809b54f915d58dc5ddf37765a0c9b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-armv8-asm-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.d"],"deps-style":"makefile","signature":"b95b00a4d39fe7708cf8836fd46d333c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.d"],"deps-style":"makefile","signature":"12f295261a0ae59916ba8f454a789fa5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/p256_beeu-x86_64-asm-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.d"],"deps-style":"makefile","signature":"e12361deb24a38999a4258b77a55a0c5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/p5_pbev2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/p5_pbev2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/p5_pbev2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/p5_pbev2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.d"],"deps-style":"makefile","signature":"a233964faad52d76cc0313d0c28e5815"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.d"],"deps-style":"makefile","signature":"f13c961c0111d73de82b41fc206da0b3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dh_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.d"],"deps-style":"makefile","signature":"3a66721266763fb32d17fe5928e350d8"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_dsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.d"],"deps-style":"makefile","signature":"9816187ec4904f5d5220c323757ee23b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.d"],"deps-style":"makefile","signature":"b4d68e6d6dd205e5cfc09d30b0871877"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ec_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.d"],"deps-style":"makefile","signature":"4bc25910a4dd888b5560d21fcf21f01a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.d"],"deps-style":"makefile","signature":"059d36e7456ea820eb9fd6fc1505f1c0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_ed25519_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.d"],"deps-style":"makefile","signature":"8ec52f31f1ab76ab5edd03da452b79da"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_hkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_hkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_hkdf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_hkdf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.d"],"deps-style":"makefile","signature":"bca9f845eb2eb4bcdda54ab4d7e0038f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.d"],"deps-style":"makefile","signature":"430195386f67422acf7461ecd108a573"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_rsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.d"],"deps-style":"makefile","signature":"3c17f5171b1387affc258114d97de2c3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.d"],"deps-style":"makefile","signature":"ded45040d563d8fd6ed79e5d35a4c73b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/p_x25519_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.d"],"deps-style":"makefile","signature":"76a99624e127e9de8bfcc7676703c769"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/pair.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/pair.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/pair.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/pair.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.d"],"deps-style":"makefile","signature":"223d49ec0d6690417f649faeca09bf79"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/params.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/params.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/params.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/dh/params.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.d"],"deps-style":"makefile","signature":"9bfad93368bc53a76c355d40266c41a2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/passive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/passive.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/passive.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/passive.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.d"],"deps-style":"makefile","signature":"044c6654431007afe33e08c577336d0f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/pbkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/pbkdf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/pbkdf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/pbkdf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.d"],"deps-style":"makefile","signature":"9fd5a349ccab65403d02af96f7a78a26"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_all.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_all.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.d"],"deps-style":"makefile","signature":"7a918a234691677b67b46a7f07df6739"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_info.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_info.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.d"],"deps-style":"makefile","signature":"e4ffe2ae14d67216c039b9f475a9dc94"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.d"],"deps-style":"makefile","signature":"77de9cd008f7de12c59965f82cfd4393"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_oth.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_oth.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_oth.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_oth.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.d"],"deps-style":"makefile","signature":"9c068a746b13b16f30fc61546db34bfb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pk8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pk8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pk8.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pk8.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.d"],"deps-style":"makefile","signature":"d382d7acada34935b39e9a00b15f19d0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pkey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_pkey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.d"],"deps-style":"makefile","signature":"e36f8faa6d383b57e77b7968e1621a6d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.d"],"deps-style":"makefile","signature":"54cc32f896f3bbf0852d7ba250b22bef"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_xaux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_xaux.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_xaux.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pem/pem_xaux.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.d"],"deps-style":"makefile","signature":"61b8d023c531923f9f9cdf8a227afb38"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.d"],"deps-style":"makefile","signature":"c0174d1ef4be5dd37aca8e42dfb4cfd9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs7/pkcs7_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.d"],"deps-style":"makefile","signature":"85baa8c43ddb398d7aa4341b09f230b4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.d"],"deps-style":"makefile","signature":"1d1bddd1a4a48d348e131c2773c13470"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pkcs8/pkcs8_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.d"],"deps-style":"makefile","signature":"77e53ad1f0fd5fd2bbc6e20a037aaf6b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/pmbtoken.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/pmbtoken.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/pmbtoken.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/pmbtoken.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.d"],"deps-style":"makefile","signature":"63f74acafd7d83ad38f6716797fce18a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/policy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/policy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/policy.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/policy.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.d"],"deps-style":"makefile","signature":"51c1dcf784b5d2b2725cb10556eb64c2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.d"],"deps-style":"makefile","signature":"371fb537d513421610e33f417c496647"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.d"],"deps-style":"makefile","signature":"7e20744605811a0d0fdb8ef4773a1639"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm_asm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm_asm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm_asm.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_arm_asm.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.d"],"deps-style":"makefile","signature":"d3ffdfce2b4bfa2cb83463538dfaa0e3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_vec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_vec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_vec.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/poly1305/poly1305_vec.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.d"],"deps-style":"makefile","signature":"902b0082d2cf524cb06a57ef5c1f364a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/asm/poly_rq_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/asm/poly_rq_mul.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/asm/poly_rq_mul.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/hrss/asm/poly_rq_mul.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.d"],"deps-style":"makefile","signature":"7eac5cc105eff7c9e4a9dc153ab975a1"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pool/pool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pool/pool.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pool/pool.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/pool/pool.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.d"],"deps-style":"makefile","signature":"8e03e435019db22af1674dae137612f5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/posix_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/posix_time.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/posix_time.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/posix_time.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.d"],"deps-style":"makefile","signature":"5a072df16d2f8c16a0baa9f11fab1878"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/print.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/print.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.d"],"deps-style":"makefile","signature":"f1ae075839dfb3743804d56d276da1d6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/printf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/printf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/printf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/printf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.d"],"deps-style":"makefile","signature":"8d82e4125b4825571df935c92f677dd0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/rand.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/rand.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/rand.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/rand.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.d"],"deps-style":"makefile","signature":"827c2db503c42d964c4431fb1d8b319d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rc4/rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rc4/rc4.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rc4/rc4.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rc4/rc4.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.d"],"deps-style":"makefile","signature":"b30ebb8a919432827c62c996d64ac7b5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.d"],"deps-style":"makefile","signature":"01c78441f63611cad6fb66c9fee1addf"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rdrand-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.d"],"deps-style":"makefile","signature":"c533c1f60894b1b0ec2112d74b47cac3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/refcount.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/refcount.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/refcount.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/refcount.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.d"],"deps-style":"makefile","signature":"980df99adda0d10c965675a554a7c847"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.d"],"deps-style":"makefile","signature":"331de2659235443c29866f35abd51fa9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_crypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_crypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_crypt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_crypt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.d"],"deps-style":"makefile","signature":"a1bc8bcf335b35f1e6d43d404e54e4c5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_extra.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_extra.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_extra.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.d"],"deps-style":"makefile","signature":"3862a5f92de9daf517364c25d1118fad"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_print.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_print.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rsa/rsa_print.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.d"],"deps-style":"makefile","signature":"f9729116dbdfd9d7fbfa7660506bec94"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/rsa_pss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/rsa_pss.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/rsa_pss.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/rsa_pss.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.d"],"deps-style":"makefile","signature":"f1c438fbf7e3e382ae09e36063fae9cd"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.d"],"deps-style":"makefile","signature":"a64904cf19d6fbc77487b2c591f794f4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/rsaz-avx2-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.d"],"deps-style":"makefile","signature":"5c04da862c184b9ed731160fa3d5feb9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_both.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_both.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_both.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_both.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.d"],"deps-style":"makefile","signature":"eab72ba79c2dc9eba9bac6855b332a23"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.d"],"deps-style":"makefile","signature":"503bced1863b37ab3c4ff404c49de201"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_pkt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_pkt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_pkt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/s3_pkt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.d"],"deps-style":"makefile","signature":"ffc10d2dff5c4325e60b9b21bdce50a7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/scrypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/scrypt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/scrypt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/scrypt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.d"],"deps-style":"makefile","signature":"1b015f4b5c6fdcdb763c8b50f3f5c3a1"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.d"],"deps-style":"makefile","signature":"4c1cc0bf92515e309d51324cadf9ba75"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.d"],"deps-style":"makefile","signature":"d46825c253865e2863d8eafafdb1b8cf"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv4-large-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv4-large-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv4-large-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv4-large-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.d"],"deps-style":"makefile","signature":"4e67190bcc8bd0f24aa839149aecea54"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.d"],"deps-style":"makefile","signature":"adbc1ce71f558e0e78c9c5a03f96e66b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.d"],"deps-style":"makefile","signature":"d5aadaf14b87d9ba909ab9d21ed034e5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.d"],"deps-style":"makefile","signature":"f527503ee9c11c7fe5cefe2914628387"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.d"],"deps-style":"makefile","signature":"0324d8dc2744c33a124782c86df069d6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha1-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.d"],"deps-style":"makefile","signature":"aceff5fddcdf4e550ac9b5a9b0b52b4a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.d"],"deps-style":"makefile","signature":"06b2e69f56c3f76dd219104d0320131c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.d"],"deps-style":"makefile","signature":"3d331299c88b1e0c8896ac1b093a7d1a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.d"],"deps-style":"makefile","signature":"5918bb2271fb6130b9702d57aebe1b0b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.d"],"deps-style":"makefile","signature":"d0835e4002e63f7b274eddaab26278a4"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.d"],"deps-style":"makefile","signature":"e4671099d455947f6c29f716c08eccd2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.d"],"deps-style":"makefile","signature":"6ab626fba1be1f20658f4ee121a39b15"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.d"],"deps-style":"makefile","signature":"4e0ed49686192a064e696c9100cb9b3d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.d"],"deps-style":"makefile","signature":"e7b882edc61513ae68a2e9070bb7e31c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha256-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.d"],"deps-style":"makefile","signature":"bdb1612674ad915079657aca024e24b6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha256.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha256.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha256.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha256.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.d"],"deps-style":"makefile","signature":"a684ab9d5b11efb954eeef5af0e58216"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.d"],"deps-style":"makefile","signature":"f76f4721c2e3d93419efb9246f6edc8d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-586-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.d"],"deps-style":"makefile","signature":"7a51b0d211f71d899516c40ecd662332"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv4-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv4-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv4-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.d"],"deps-style":"makefile","signature":"5cd0722db6a2c2837fd383eb732b1a60"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.d"],"deps-style":"makefile","signature":"5d5bd5e725ad9f678caaed1296c6bf36"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.d"],"deps-style":"makefile","signature":"cc393a517ed8cf6700b2302410d36ea9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.d"],"deps-style":"makefile","signature":"3f9c855923ecabf805398c4d8a201089"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.d"],"deps-style":"makefile","signature":"fcf5fdb978a9c1286984721910938691"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/sha512-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.d"],"deps-style":"makefile","signature":"cde1af39a36988a1af0b156aa7aa2b95"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha512.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha512.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha512.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/sha/sha512.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.d"],"deps-style":"makefile","signature":"d8a1051df643a32bb9b0ebab2e5c21cc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/sign.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/sign.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/evp/sign.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.d"],"deps-style":"makefile","signature":"170260164ee29133966b13aafdda0d4c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/siphash/siphash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/siphash/siphash.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/siphash/siphash.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/siphash/siphash.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.d"],"deps-style":"makefile","signature":"8aab379ce54ca968ca35a3c53eeb173c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/slhdsa/slhdsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/slhdsa/slhdsa.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/slhdsa/slhdsa.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/slhdsa/slhdsa.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.d"],"deps-style":"makefile","signature":"0d73e41eeba8348e46f62c28b43073c6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.d"],"deps-style":"makefile","signature":"7bd5ede1d3617e4dd9afed53a472f454"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket_helper.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket_helper.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket_helper.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bio/socket_helper.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.d"],"deps-style":"makefile","signature":"904c89fe8b884539bfa8c1a4e27aa9fb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/spake25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/spake25519.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/spake25519.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/spake25519.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.d"],"deps-style":"makefile","signature":"abe90f4d7bf71655f4b3e6e80c773802"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/spake2plus/spake2plus.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/spake2plus/spake2plus.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/spake2plus/spake2plus.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/spake2plus/spake2plus.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.d"],"deps-style":"makefile","signature":"b871e894d877ed946cca7c8bdbc3aad0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_aead_ctx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_aead_ctx.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_aead_ctx.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_aead_ctx.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.d"],"deps-style":"makefile","signature":"4fe11d95686a2e447d8fcdf31abe48d9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_asn1.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_asn1.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_asn1.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.d"],"deps-style":"makefile","signature":"b405539969f841c038a305e06d06caf2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_buffer.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_buffer.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_buffer.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_buffer.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.d"],"deps-style":"makefile","signature":"7835eb2dd66b05f2d4aa95c3e8fc4a0f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cert.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cert.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cert.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cert.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.d"],"deps-style":"makefile","signature":"fe8c0dec9235efafba2d4855106c6c8a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cipher.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cipher.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cipher.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_cipher.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.d"],"deps-style":"makefile","signature":"be1e01da44d4fa100e1824dfa5580dbe"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_credential.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_credential.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_credential.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_credential.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.d"],"deps-style":"makefile","signature":"af12770a7043aa88a448c4b5bee76583"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_file.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_file.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_file.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.d"],"deps-style":"makefile","signature":"6440de8d9446e82f398b0795f0c9e752"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_key_share.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_key_share.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_key_share.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_key_share.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.d"],"deps-style":"makefile","signature":"08fe0909cfc9099de19a1c5413a44be0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.d"],"deps-style":"makefile","signature":"b4d288026206435cf425917f2f5b7704"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_privkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_privkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_privkey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_privkey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.d"],"deps-style":"makefile","signature":"c4c3d9eb53f3883861a2242ed0e3f179"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_session.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_session.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_session.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_session.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.d"],"deps-style":"makefile","signature":"c7a2e96c412ea887e1c55909c10c6753"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_stat.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_stat.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_stat.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_stat.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.d"],"deps-style":"makefile","signature":"0a1bc7ee2c1a95918d2fe6a3695c9fba"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_transcript.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_transcript.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_transcript.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_transcript.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.d"],"deps-style":"makefile","signature":"e65e55f0cb54595df0fd5c11b7a9fca0"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_versions.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_versions.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_versions.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_versions.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.d"],"deps-style":"makefile","signature":"aa1de700e984f6a2420291da9bda93cb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/ssl_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.d"],"deps-style":"makefile","signature":"92b95c0b03665bb8128a84bc8566d595"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/stack/stack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/stack/stack.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/stack/stack.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/stack/stack.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.d"],"deps-style":"makefile","signature":"7d1a7fbea948cd7ddbda49e3b956d3d3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/t1_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/t1_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/t1_enc.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/t1_enc.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.d"],"deps-style":"makefile","signature":"546b0ce741ba1e8a2afe402841298bb9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_crl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_crl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.d"],"deps-style":"makefile","signature":"8eaa3bb47b9caf8a6271c8d20612b521"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_req.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_req.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.d"],"deps-style":"makefile","signature":"37ad8940bafc31a556b098affa92281a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.d"],"deps-style":"makefile","signature":"39c3bbe17f23bf19601a44755065b331"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509a.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/t_x509a.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.d"],"deps-style":"makefile","signature":"5b08cd07e0afd6321ebadb6f56646a99"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_dec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_dec.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_dec.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_dec.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.d"],"deps-style":"makefile","signature":"df7b82ea34b9541dc2349673252f8216"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_enc.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_enc.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.d"],"deps-style":"makefile","signature":"e571f36579e8fdbfcde8c4ff69aec793"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_fre.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_fre.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_fre.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_fre.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.d"],"deps-style":"makefile","signature":"f76ca203dee87cb4eeea5a20bc09ef08"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_new.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_new.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_new.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_new.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.d"],"deps-style":"makefile","signature":"ddffb9d2471976de823fada935939c53"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_typ.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_typ.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_typ.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_typ.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.d"],"deps-style":"makefile","signature":"491698c08e10cbd6a6a07d6318b3c33a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_utl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/asn1/tasn_utl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.d"],"deps-style":"makefile","signature":"3c97ea665cb281e6c65d832191c37843"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.d"],"deps-style":"makefile","signature":"b8f2125b6e0ee9cd3ba2e61d600fe8e6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_none.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_none.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_none.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_none.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.d"],"deps-style":"makefile","signature":"77f2cb02f7d0fa9bfaf989f945f65b74"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_pthread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_pthread.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_pthread.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_pthread.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.d"],"deps-style":"makefile","signature":"d5bbd6e7be64d5df0d90227cf79decd3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_win.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_win.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/thread_win.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.d"],"deps-style":"makefile","signature":"88e0543da1114ba1d93748f2f4852840"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_both.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_both.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_both.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_both.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.d"],"deps-style":"makefile","signature":"c65b46e0d75e3eb5b14c56f320e4893a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_client.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_client.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_client.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_client.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.d"],"deps-style":"makefile","signature":"024e07586c844404becfc82895ca5f41"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_enc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_enc.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_enc.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.d"],"deps-style":"makefile","signature":"b1056bac929bc8f6da528cc07fd5174e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_server.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_server.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_server.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls13_server.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.d"],"deps-style":"makefile","signature":"e0c071c09820915ba7a63a3a997d0aab"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/tls_cbc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/tls_cbc.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/tls_cbc.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/cipher/tls_cbc.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.d"],"deps-style":"makefile","signature":"1442b8da10d67bd80fc2d12d933f6be3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_method.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_method.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_method.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_method.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.d"],"deps-style":"makefile","signature":"6587500ce4aa121549faf305612f3fb3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_record.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_record.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_record.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_record.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.d"],"deps-style":"makefile","signature":"3c43054b76fff235571a1f59ed530217"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/trust_token.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/trust_token.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/trust_token.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/trust_token.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.d"],"deps-style":"makefile","signature":"ad67a5d8d5fe1f9e256607668017c7aa"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/trusty.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/trusty.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/trusty.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/trusty.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.d"],"deps-style":"makefile","signature":"a902d4c5aaf50f3ba6646127fa029482"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/unicode.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/unicode.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/unicode.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/bytestring/unicode.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.d"],"deps-style":"makefile","signature":"263413be2d919cd9e61017d7d79d9ed8"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/urandom.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/urandom.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/urandom.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/urandom.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.d"],"deps-style":"makefile","signature":"43cc3baaee50c328fb1ceb154e49a513"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.d"],"deps-style":"makefile","signature":"35cbe4203a126e69965320649b4ca8a7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akeya.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akeya.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akeya.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_akeya.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.d"],"deps-style":"makefile","signature":"b4544cfdfb9960bebd9de31a0bca8bc7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_alt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_alt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_alt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_alt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.d"],"deps-style":"makefile","signature":"79c0a5c438f975782a5aa1eae75b2905"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bcons.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bcons.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.d"],"deps-style":"makefile","signature":"8795d8e607588a31ee1ca31c5cad73a7"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bitst.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bitst.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bitst.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_bitst.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.d"],"deps-style":"makefile","signature":"9eb634c3eb448bf296131b3f773a8ef1"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_conf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_conf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_conf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.d"],"deps-style":"makefile","signature":"ac55f888321a020c6fbd23715089b46e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_cpols.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_cpols.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_cpols.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_cpols.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.d"],"deps-style":"makefile","signature":"8f12524620aafe8a48994ffb684d1e21"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_crld.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_crld.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_crld.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_crld.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.d"],"deps-style":"makefile","signature":"4e037347b18836b9869c977009583e37"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_enum.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_enum.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_enum.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_enum.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.d"],"deps-style":"makefile","signature":"041285571167fa7c944330820e013185"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_extku.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_extku.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_extku.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_extku.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.d"],"deps-style":"makefile","signature":"07a485424b717b33f96ed0cbcb4680cb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_genn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_genn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_genn.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_genn.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.d"],"deps-style":"makefile","signature":"d2808f7644e10137a82ee96385e8a375"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ia5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ia5.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ia5.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ia5.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.d"],"deps-style":"makefile","signature":"f128783eaf680b5b0c20bc0aaa9ccf4e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_info.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_info.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_info.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.d"],"deps-style":"makefile","signature":"c541f945095452767d0107697dfbf74a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_int.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_int.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_int.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.d"],"deps-style":"makefile","signature":"a6e296f84a96784b2fa2b2bd7e2f8992"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_lib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_lib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_lib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.d"],"deps-style":"makefile","signature":"5b55b7b98f72a052443b1fab91bd5e62"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ncons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ncons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ncons.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ncons.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.d"],"deps-style":"makefile","signature":"85d940cc55566f4659aceeef2ab00f57"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ocsp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ocsp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ocsp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_ocsp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.d"],"deps-style":"makefile","signature":"78cfc4fc3052c7a57ee95024f7f3f1a2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pcons.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pcons.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pcons.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.d"],"deps-style":"makefile","signature":"89a73751e6bcb9897b5586be7f4a6700"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pmaps.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pmaps.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pmaps.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_pmaps.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.d"],"deps-style":"makefile","signature":"dbb5e403b71f07f6ee4a557fdff79ef5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_prn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_prn.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_prn.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_prn.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.d"],"deps-style":"makefile","signature":"9837600d52d2ab1318056e44f39cdb70"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_purp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_purp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_purp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_purp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.d"],"deps-style":"makefile","signature":"ad6747fc6eab85be5afc3d803cb96b35"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_skey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_skey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_skey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_skey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.d"],"deps-style":"makefile","signature":"2d25529a87ecc8f26bfa87725fef9a92"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_utl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_utl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/v3_utl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.d"],"deps-style":"makefile","signature":"ec2ae8bbfe7897d31b743c533a744073"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/voprf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/voprf.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/voprf.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/trust_token/voprf.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.d"],"deps-style":"makefile","signature":"4d100931b22fffb91bdc29a89864ae8a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv7-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv7-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv7-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.d"],"deps-style":"makefile","signature":"610a5fce9083787f260d92f7d9a8ddbc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.d"],"deps-style":"makefile","signature":"951c60ca3703435a874c151f11fb1a2c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.d"],"deps-style":"makefile","signature":"e380878b8f35a1f1cde25831484fc68c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-win.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-win.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-armv8-win.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.d"],"deps-style":"makefile","signature":"c2e8a66112593bc5aeb26b03891b0d8e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.d"],"deps-style":"makefile","signature":"1ad8325254c5bf6c013a7afe47cfce21"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.d"],"deps-style":"makefile","signature":"593fce7bcdf9e6538eb16a4571abdc5e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.d"],"deps-style":"makefile","signature":"ed47f411e245662c3a854121fa1f3fa2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/vpaes-x86_64-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.d"],"deps-style":"makefile","signature":"3223d797216678a7b7cdffb05f2711e6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/windows.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/windows.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/windows.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/rand/windows.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.d"],"deps-style":"makefile","signature":"076d6f31f58fcc747f7b6f5f572e5cc6"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/curve25519/asm/x25519-asm-arm.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.d"],"deps-style":"makefile","signature":"e7df77d84805ba2416c413633e479551"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.d"],"deps-style":"makefile","signature":"a492507f121129f306d2babf0263cced"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_att.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_att.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_att.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_att.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.d"],"deps-style":"makefile","signature":"55ac4949a22a33b02c288ce9f08bb2ff"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_cmp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_cmp.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_cmp.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_cmp.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.d"],"deps-style":"makefile","signature":"ec074cf339d68902fbfaa9caaa3ecdee"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_d2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_d2.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_d2.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_d2.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.d"],"deps-style":"makefile","signature":"c319596f5004cfc5cd33e6306ae74860"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_def.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_def.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_def.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_def.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.d"],"deps-style":"makefile","signature":"e250fad744631b8a1b6edccbd2ca219b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_ext.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_ext.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_ext.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_ext.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.d"],"deps-style":"makefile","signature":"66419167544e1c0ae77ceb83eb0773cc"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_lu.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_lu.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_lu.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_lu.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.d"],"deps-style":"makefile","signature":"51cc925b03e8f55442925c843733e2c9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_obj.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_obj.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_obj.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.d"],"deps-style":"makefile","signature":"7b4fca35f80c210920cec1b2a37930ac"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_req.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_req.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.d"],"deps-style":"makefile","signature":"168bd3c05e99adf92e5d0dcb356614a5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_set.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_set.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_set.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_set.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.d"],"deps-style":"makefile","signature":"335f93435c81b644c2053e8886a2d8bf"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_trs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_trs.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_trs.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_trs.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.d"],"deps-style":"makefile","signature":"fe1f8b7b950e14f422dcbf7fa011f837"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_txt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_txt.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_txt.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_txt.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.d"],"deps-style":"makefile","signature":"6332f8d51ba6ecc7634148d4750819d2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_v3.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_v3.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_v3.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_v3.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.d"],"deps-style":"makefile","signature":"d8dae0570b8f196d80d3a4656433a003"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vfy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vfy.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vfy.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vfy.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.d"],"deps-style":"makefile","signature":"4fd9fa654b7c99379c26b4e01cfb69ee"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vpm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vpm.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vpm.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509_vpm.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.d"],"deps-style":"makefile","signature":"103fa718142e08e08f15163c66fe566f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509cset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509cset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509cset.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509cset.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.d"],"deps-style":"makefile","signature":"f42716d3d4592b5aec5dfecaa7dfb9fa"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509name.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509name.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.d"],"deps-style":"makefile","signature":"3d6746154a24f73c49bd7d5224675eb5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509rset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509rset.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509rset.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509rset.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.d"],"deps-style":"makefile","signature":"fb3d9b83af1661f5844fe7ac64aeb49f"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509spki.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x509spki.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.d"],"deps-style":"makefile","signature":"bd190f7d456f071d6a37e7f498428bf9"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.d"],"deps-style":"makefile","signature":"267e0216d6b1f12d36c1fb3ab955e49d"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.d"],"deps-style":"makefile","signature":"719dc37f6af963cd5fd6ccfc028fc534"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.d"],"deps-style":"makefile","signature":"9ebcfb4dfd4a387f1af7dff5914172ea"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.d"],"deps-style":"makefile","signature":"600a0cea46e0cbd8a2d2ef3edf9b42eb"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-apple.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-apple.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-apple.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.d"],"deps-style":"makefile","signature":"84da42adaeb16db7976814c2edaf81d2"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-linux.S normal arm64 assembler-with-cpp com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-linux.S","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","assembler-with-cpp","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/gen/bcm/x86_64-mont5-linux.S","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.d"],"deps-style":"makefile","signature":"61dfcb8915ee14753d1e0fec901e48da"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_algor.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_algor.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_algor.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_algor.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.d"],"deps-style":"makefile","signature":"a1f1396fd1a7ff9a5d6b9ae7be5a3474"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_all.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_all.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_all.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.d"],"deps-style":"makefile","signature":"86d4f6762c681d8b34673db07666bbb5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_attrib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_attrib.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_attrib.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_attrib.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.d"],"deps-style":"makefile","signature":"89eb53ddc8364c2564eaf85a2536f662"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_crl.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_crl.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_crl.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.d"],"deps-style":"makefile","signature":"9f5e0067c5173e6726b7453e455220e5"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_exten.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_exten.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_exten.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_exten.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.d"],"deps-style":"makefile","signature":"c99cc3b8209719fd29c1f162bb7af989"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_name.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_name.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_name.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.d"],"deps-style":"makefile","signature":"6846d204a92109d1ab1c2e2eef4ea4d3"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_pubkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_pubkey.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_pubkey.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_pubkey.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.d"],"deps-style":"makefile","signature":"9592fabdbe1eacf1f8c21355b6576b3c"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_req.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_req.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_req.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.d"],"deps-style":"makefile","signature":"6442974605b7920c0fa086f0a8cbca5e"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_sig.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_sig.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_sig.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_sig.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.d"],"deps-style":"makefile","signature":"d752849de953e831440a3164d0f846ae"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_spki.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_spki.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_spki.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.d"],"deps-style":"makefile","signature":"db5a70441db80e7e8f85ccb5b80e8f4b"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_val.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_val.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_val.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_val.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.d"],"deps-style":"makefile","signature":"76dbedcfc208aceba0d1455c049770ca"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.d"],"deps-style":"makefile","signature":"16b464f5c698064860b8676bef2fc80a"},"P1:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"shell","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509a.cc normal arm64 c++ com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509a.cc","","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c++","-ivfsstatcache","/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/com.apple.DeveloperTools/26.3-17C529/Xcode/SDKStatCaches.noindex/iphoneos26.2-23C57-dc75598d0054f22ec865fa860f139d7288450c32e1b53ef065a99acc3d9992c6.sdkstatcache","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-fno-color-diagnostics","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/var/folders/vd/l589m_yx7rbbktgdzb7b4g1m0000gn/C/org.llvm.clang/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-Wno-trigraphs","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Wno-return-type","-Wno-non-virtual-dtor","-Wno-overloaded-virtual","-Wno-exit-time-destructors","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wno-unused-function","-Wno-unused-label","-Wno-unused-parameter","-Wno-unused-variable","-Wunused-value","-Wno-empty-body","-Wno-uninitialized","-Wno-unknown-pragmas","-w","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wno-constant-conversion","-Wno-int-conversion","-Wno-bool-conversion","-Wno-enum-conversion","-Wno-float-conversion","-Wno-non-literal-null-conversion","-Wno-objc-literal-conversion","-Wshorten-64-to-32","-Wno-newline-eof","-Wno-c++11-extensions","-Wno-implicit-fallthrough","-fstrict-aliasing","-Wdeprecated-declarations","-Winvalid-offsetof","-Wno-sign-conversion","-Wno-infinite-recursion","-Wno-move","-Wno-comma","-Wno-block-capture-autoreleasing","-Wno-strict-prototypes","-Wno-range-loop-analysis","-Wno-semicolon-before-method-body","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","-MMD","-MT","dependencies","-MF","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.d","--serialize-diagnostics","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.dia","-c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/crypto/x509/x_x509a.cc","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o"],"env":{},"working-directory":"/Users/treyt/Desktop/code/proxy_ios/ProxyApp.xcodeproj","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.d"],"deps-style":"makefile","signature":"0343072b6d8e73275ba51194ede6e1e3"},"P1:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/CNIOBoringSSLShims/shims.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o"]},"P1:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIODarwin/shim.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o"]},"P1:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_api.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_api.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o"]},"P1:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_http.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_http.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_http.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o"]},"P1:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_llhttp.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_llhttp.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLLHTTP/c_nio_llhttp.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o"]},"P1:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/liburing_shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/liburing_shims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/liburing_shims.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o"]},"P1:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOLinux/shim.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o"]},"P1:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOOpenBSD/shim.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o"]},"P1:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/event_loop_id.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/event_loop_id.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOPosix/event_loop_id.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o"]},"P1:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/CNIOWASI.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/CNIOWASI.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWASI/CNIOWASI.c","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o"]},"P1:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/WSAStartup.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/WSAStartup.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/WSAStartup.c","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o"]},"P1:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/shim.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/CNIOWindows/shim.c","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o"]},"P1:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::CompileC /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o.scan","","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o"]},"P1:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/src/_AtomicsShims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler":{"tool":"ccompile","description":"CompileC /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/src/_AtomicsShims.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/_AtomicsShims/src/_AtomicsShims.c","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o.scan","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o"]},"P2:::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml","inputs":["/Users/treyt/Desktop/code/proxy_ios/build"],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_dependency_info.dat"],"deps-style":"dependency-info","signature":"e876340ac8dca320d7bd155cf140274a"},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements Atomics normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements Atomics normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/OptionalRawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/RawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/AtomicBool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/IntegerConformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Conformances/autogenerated/PointerConformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Primitives/autogenerated/Primitives.native.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicInteger.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicOptionalWrappable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicStorage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Protocols/AtomicValue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/AtomicMemoryOrderings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/DoubleWord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/ManagedAtomicLazyReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/UnsafeAtomicLazyReference.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Types/autogenerated/IntegerOperations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/Sources/Atomics/Unmanaged extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/OptionalRawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicBool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/PointerConformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Primitives.native.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicOptionalWrappable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicStorage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/AtomicMemoryOrderings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/DoubleWord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/ManagedAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/UnsafeAtomicLazyReference.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/IntegerOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Unmanaged extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftdoc"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/GeneratedModuleMaps-iphoneos/Atomics-Swift.h"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyMetadataFileList"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.DependencyStaticMetadataFileList"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Atomics.modulemap"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-OutputFileMap.json"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.LinkFileList"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftConstValuesFileList"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.SwiftFileList"]},"P2:target-Atomics-PACKAGE-TARGET:Atomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics_const_extract_protocols.json"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/div.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/exponentiation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sqrt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aeseax.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cms.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ecdsa_p1363.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fuzzer_mode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/xwing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes-gcm-avx512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat","-fobjc-arc","-fobjc-link-runtime","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL_dependency_info.dat"],"deps-style":"dependency-info","signature":"0a075bf93819de4bbd9c911712f9e0d3"},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyMetadataFileList"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/CCryptoBoringSSL.DependencyStaticMetadataFileList"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.h"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/DerivedSources/resource_bundle_accessor.m"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/CCryptoBoringSSL.LinkFileList"]},"P2:target-CCryptoBoringSSL-PACKAGE-TARGET:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSL.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp"]},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat","-fobjc-arc","-fobjc-link-runtime","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims_dependency_info.dat"],"deps-style":"dependency-info","signature":"80f1956f24127587ba8610ff48b2be3d"},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyMetadataFileList"]},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/CCryptoBoringSSLShims.DependencyStaticMetadataFileList"]},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.h"]},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/DerivedSources/resource_bundle_accessor.m"]},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/CCryptoBoringSSLShims.LinkFileList"]},"P2:target-CCryptoBoringSSLShims-PACKAGE-TARGET:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CCryptoBoringSSLShims.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp"]},"P2:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOAtomics.modulemap"]},"P2:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/c-nioatomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics_dependency_info.dat"],"deps-style":"dependency-info","signature":"7f05d7785849e5567d47c1f727cc169a"},"P2:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyMetadataFileList"]},"P2:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.DependencyStaticMetadataFileList"]},"P2:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/CNIOAtomics.modulemap"]},"P2:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOAtomics-PACKAGE-TARGET:CNIOAtomics-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOAtomics.build/Objects-normal/arm64/CNIOAtomics.LinkFileList"]},"P2:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bitstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_bool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_d2i_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_dup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_gentm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_i2d_fp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_mbstr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_object.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_octet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_strnid.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_type.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_utctm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_par.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn_pack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/f_string.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/posix_time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_dec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_fre.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_new.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_typ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tasn_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/connect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/errno.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hexdump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/printf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/socket_helper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/blake2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/convert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/buf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_compat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbb.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cbs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/unicode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/derive_key.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesctrhmac.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_aesgcmsiv.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_chacha20poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/e_tls.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/get_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_cbc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_fuchsia.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_openbsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_sysreg.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_aarch64_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_freebsd.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_arm_linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/cpu_intel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x25519-asm-arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/curve25519_64_adx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/des.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/params.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/digest_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ec_derive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hash_to_curve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ecdsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/engine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/evp_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dh_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_dsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ec_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_ed25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_hkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p_x25519_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pbkdf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ex_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bcm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fips_shared_support.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hpke.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly_rq_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/hrss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/kyber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/lhash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mldsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/mlkem.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/obj_xref.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_oth.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pk8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_pkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pem_xaux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs7_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p5_pbev2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pkcs8_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_arm_asm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/poly1305_vec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/deterministic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fork_detect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/forkunsafe.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/getentropy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ios.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/passive.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rand.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trusty.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/urandom.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rc4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/refcount.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_crypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_extra.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/siphash.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/slhdsa.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/spake2plus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/stack.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_none.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_pthread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/thread_win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/pmbtoken.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/trust_token.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/voprf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_sign.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/a_verify.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/algorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/asn1_gen.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_dir.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/by_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/i2d_pr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/name_print.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsa_pss.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_akeya.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_alt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_bitst.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_conf.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_cpols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_crld.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_enum.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_extku.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_genn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ia5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_info.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ncons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_ocsp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pcons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_pmaps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_prn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_purp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_skey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/v3_utl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_att.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_cmp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_d2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_def.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_ext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_lu.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_obj.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_set.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_trs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_txt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_v3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vfy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509_vpm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509cset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509rset.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x509spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_algor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_all.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_attrib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_crl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_exten.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_name.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_pubkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_req.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_sig.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_spki.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_val.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x_x509a.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx10-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes-gcm-avx2-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-gcm-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesni-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aesv8-gcm-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv4-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/armv8-mont-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bn-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bsaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/co-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-neon-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-ssse3-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghash-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ghashv8-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-armv8-asm-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/p256_beeu-x86_64-asm-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rdrand-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/rsaz-avx2-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv4-large-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha1-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha256-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/sha512-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv7-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/vpaes-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/x86_64-mont5-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/aes128gcmsiv-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv4-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_armv8-win.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/chacha20_poly1305_x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/err_data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-586-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-apple.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/md5-x86_64-linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/bio_ssl.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/d1_srtp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/dtls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/encrypted_client_hello.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handoff.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/handshake_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/s3_pkt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_aead_ctx.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_asn1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_buffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_credential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_file.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_key_share.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_lib.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_privkey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_session.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_stat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_transcript.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_versions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/ssl_x509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/t1_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_both.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_client.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_enc.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls13_server.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_method.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/tls_record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_curve25519_adx_square.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_mul.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/fiat_p256_adx_sqr.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL_dependency_info.dat"],"deps-style":"dependency-info","signature":"a11f692553d94f263fc7532bebb3bc08"},"P2:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyMetadataFileList"]},"P2:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/CNIOBoringSSL.DependencyStaticMetadataFileList"]},"P2:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/533656923a283fa776881f304837ed9e-common-args.resp"]},"P2:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/82b82416624d2658e5098eb0a28c15c5-common-args.resp"]},"P2:target-CNIOBoringSSL-PACKAGE-TARGET:CNIOBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSL.build/Objects-normal/arm64/CNIOBoringSSL.LinkFileList"]},"P2:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/CNIOBoringSSLShims.modulemap"]},"P2:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims_dependency_info.dat"],"deps-style":"dependency-info","signature":"1afdb543b132aaa4e1d0f9d0ab9a47fc"},"P2:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyMetadataFileList"]},"P2:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.DependencyStaticMetadataFileList"]},"P2:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/CNIOBoringSSLShims.modulemap"]},"P2:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOBoringSSLShims-PACKAGE-TARGET:CNIOBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/CNIOBoringSSLShims.build/Objects-normal/arm64/CNIOBoringSSLShims.LinkFileList"]},"P2:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIODarwin.modulemap"]},"P2:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin_dependency_info.dat"],"deps-style":"dependency-info","signature":"a62d99f1cf92a4bab22a6ad113cb6de8"},"P2:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyMetadataFileList"]},"P2:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.DependencyStaticMetadataFileList"]},"P2:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/CNIODarwin.modulemap"]},"P2:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIODarwin-PACKAGE-TARGET:CNIODarwin-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIODarwin.build/Objects-normal/arm64/CNIODarwin.LinkFileList"]},"P2:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLLHTTP.modulemap"]},"P2:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_api.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_http.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/c_nio_llhttp.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP_dependency_info.dat"],"deps-style":"dependency-info","signature":"37adb37390250011532a3c6b843e7245"},"P2:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyMetadataFileList"]},"P2:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.DependencyStaticMetadataFileList"]},"P2:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/CNIOLLHTTP.modulemap"]},"P2:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOLLHTTP-PACKAGE-TARGET:CNIOLLHTTP-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLLHTTP.build/Objects-normal/arm64/CNIOLLHTTP.LinkFileList"]},"P2:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOLinux.modulemap"]},"P2:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/liburing_shims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux_dependency_info.dat"],"deps-style":"dependency-info","signature":"4fa6aeda550de56d14f97afd9373e38c"},"P2:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyMetadataFileList"]},"P2:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.DependencyStaticMetadataFileList"]},"P2:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/CNIOLinux.modulemap"]},"P2:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOLinux-PACKAGE-TARGET:CNIOLinux-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOLinux.build/Objects-normal/arm64/CNIOLinux.LinkFileList"]},"P2:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOOpenBSD.modulemap"]},"P2:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD_dependency_info.dat"],"deps-style":"dependency-info","signature":"d577660d3f9dab64f4fdd8a62450dc45"},"P2:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyMetadataFileList"]},"P2:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.DependencyStaticMetadataFileList"]},"P2:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/CNIOOpenBSD.modulemap"]},"P2:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOOpenBSD-PACKAGE-TARGET:CNIOOpenBSD-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOOpenBSD.build/Objects-normal/arm64/CNIOOpenBSD.LinkFileList"]},"P2:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOPosix.modulemap"]},"P2:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/event_loop_id.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix_dependency_info.dat"],"deps-style":"dependency-info","signature":"c49059367004c3d20fc3ec94c5f1f24f"},"P2:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyMetadataFileList"]},"P2:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.DependencyStaticMetadataFileList"]},"P2:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/CNIOPosix.modulemap"]},"P2:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOPosix-PACKAGE-TARGET:CNIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOPosix.build/Objects-normal/arm64/CNIOPosix.LinkFileList"]},"P2:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/CNIOWASI.modulemap"]},"P2:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI_dependency_info.dat"],"deps-style":"dependency-info","signature":"7f6b9d099ee11beec85da43e5bbed713"},"P2:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyMetadataFileList"]},"P2:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.DependencyStaticMetadataFileList"]},"P2:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/CNIOWASI.modulemap"]},"P2:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOWASI-PACKAGE-TARGET:CNIOWASI-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWASI.build/Objects-normal/arm64/CNIOWASI.LinkFileList"]},"P2:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/WSAStartup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/shim.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows_dependency_info.dat"],"deps-style":"dependency-info","signature":"ef13066f38aaa023d6ccd3fe4bfa240a"},"P2:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyMetadataFileList"]},"P2:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/CNIOWindows.DependencyStaticMetadataFileList"]},"P2:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-CNIOWindows-PACKAGE-TARGET:CNIOWindows-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/CNIOWindows.build/Objects-normal/arm64/CNIOWindows.LinkFileList"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_dependency_info.dat"],"deps-style":"dependency-info","signature":"c84f1396817659dfd922fc76111269ce"},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements ContainersPreview normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements ContainersPreview normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/OutputSpan+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Extensions/TemporaryAllocation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Copy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+ElementsEqual.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol+SpanwiseZip.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingIteratorProtocol.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Standard Conformances.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence+Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/BorrowingSequence.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/BidirectionalContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container+SpanwiseZip.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/ContainerIterator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/DynamicContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/MutableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/PermutableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RandomAccessContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeExpression2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Container/RangeReplaceableContainer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Drain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Collect.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Filter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer+Reduce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Protocols/Producer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Borrow.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Box.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Inout.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/InputSpan.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/ContainersPreview/Types/Shared.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/OutputSpan+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/TemporaryAllocation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Copy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+ElementsEqual.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingIteratorProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Standard Conformances.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence+Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BorrowingSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/BidirectionalContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container+SpanwiseZip.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainerIterator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/DynamicContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/MutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/PermutableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RandomAccessContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeExpression2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/RangeReplaceableContainer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Drain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Collect.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Filter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer+Reduce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Producer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Borrow.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Box.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Inout.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/InputSpan.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/Shared.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftdoc"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/ContainersPreview-Swift.h"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyMetadataFileList"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.DependencyStaticMetadataFileList"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/ContainersPreview.modulemap"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-OutputFileMap.json"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.LinkFileList"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftConstValuesFileList"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.SwiftFileList"]},"P2:target-ContainersPreview-PACKAGE-TARGET:ContainersPreview-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview_const_extract_protocols.json"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_dependency_info.dat"],"deps-style":"dependency-info","signature":"cd2a9c0f6be52de2d0a30087256c0c38"},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements Crypto normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements Crypto normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/AES-GCM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/AES/GCM/BoringSSL/AES-GCM_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/BoringSSL/ChaChaPoly_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/ChachaPoly/ChaChaPoly.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Cipher.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/AEADs/Nonces.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ASN1.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1BitString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Boolean.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Identifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Integer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Null.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1OctetString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ASN1Strings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ArraySliceBigint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/GeneralizedTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/Basic ASN1 Types/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/ECDSASignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SEC1PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/ASN1/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoError_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/CryptoKitErrors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/BoringSSL/Digest_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/Digests.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Digests/HashFunctions_SHA2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-AEAD.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Ciphersuite.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-KexKeyDerivation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-LabeledExtract.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/HPKE-Utils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/DHKEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-KEM-Curve25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/Conformances/HPKE-NIST-EC-KEMs.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Ciphersuite/KEM/HPKE-KEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE-Errors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/HPKE.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-Context.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Key Schedule/HPKE-KeySchedule.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/HPKE/Modes/HPKE-Modes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Insecure/Insecure_HashFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/KEM/KEM.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/BoringSSL/ECDH_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/DH.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Agreement/ECDH.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Derivation/HKDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/AESWrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Key Wrapping/BoringSSL/AESWrap_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/Ed25519_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/NISTCurvesKeys_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/BoringSSL/X25519Keys_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Curve25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/Ed25519Keys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/NISTCurvesKeys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/EC/X25519Keys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Keys/Symmetric/SymmetricKeys.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/HMAC/HMAC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MACFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Message Authentication Codes/MessageAuthenticationCode.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/PRF/AES.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSASignature_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/ECDSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/BoringSSL/EdDSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/ECDSA.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Ed25519.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Signatures/Signature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/RNG_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/SafeCompare_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/BoringSSL/Zeroization_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/PrettyBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SafeCompare.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/SecureBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/Crypto/Util/Zeroization.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES-GCM_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ChaChaPoly.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Cipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Nonces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoError_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HashFunctions_SHA2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-AEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Ciphersuite.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KexKeyDerivation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-LabeledExtract.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DHKEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM-Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-NIST-EC-KEMs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Context.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-KeySchedule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HPKE-Modes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Insecure_HashFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/KEM.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/DH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDH.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HKDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AESWrap_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Curve25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/NISTCurvesKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/X25519Keys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SymmetricKeys.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/HMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MACFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/MessageAuthenticationCode.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/AES.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSASignature_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/EdDSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/ECDSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Ed25519.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/RNG_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/SecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftdoc"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/Crypto-Swift.h"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyMetadataFileList"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.DependencyStaticMetadataFileList"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Crypto.modulemap"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/DerivedSources/resource_bundle_accessor.swift"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-OutputFileMap.json"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.LinkFileList"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftConstValuesFileList"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.SwiftFileList"]},"P2:target-Crypto-PACKAGE-TARGET:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto_const_extract_protocols.json"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_dependency_info.dat"],"deps-style":"dependency-info","signature":"9f91ee1a2c949c2d5b50fe3e90cb575d"},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements CryptoBoringWrapper normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements CryptoBoringWrapper normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/AEAD/BoringSSLAEAD.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurve.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/EC/EllipticCurvePoint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/ArbitraryPrecisionInteger.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/FiniteFieldArithmeticContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/CryptoBoringWrapper/Util/RandomBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/BoringSSLAEAD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurve.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/EllipticCurvePoint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/ArbitraryPrecisionInteger.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/FiniteFieldArithmeticContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/RandomBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftdoc"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/CryptoBoringWrapper-Swift.h"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyMetadataFileList"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.DependencyStaticMetadataFileList"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/CryptoBoringWrapper.modulemap"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/DerivedSources/resource_bundle_accessor.swift"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-OutputFileMap.json"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.LinkFileList"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftConstValuesFileList"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.SwiftFileList"]},"P2:target-CryptoBoringWrapper-PACKAGE-TARGET:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper_const_extract_protocols.json"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_dependency_info.dat"],"deps-style":"dependency-info","signature":"2db43649855769883772825c4905c84d"},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements DequeModule normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements DequeModule normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Codable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Collection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+CustomReflectable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+ExpressibleByArrayLiteral.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque+Testing.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._Storage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque._UnsafeHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/Deque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/Deque/_DequeBufferHeader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Append.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Consumption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Experimental.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Initializers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Insertions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Prepend.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Removals.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Replacements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque+Testing.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/RigidDeque/RigidDeque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Append.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Consumption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Container.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Equatable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Experimental.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Hashable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Initializers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Insertions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Prepend.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Removals.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque+Replacements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/UniqueDeque/UniqueDeque.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_DequeSlot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/DequeModule/_UnsafeDequeSegments.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Codable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Collection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+CustomReflectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+ExpressibleByArrayLiteral.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._Storage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque._UnsafeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/Deque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeBufferHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque+Testing.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/RigidDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Append.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Consumption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Container.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Equatable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Experimental.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Hashable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Initializers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Insertions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Prepend.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Removals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque+Replacements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/UniqueDeque.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_DequeSlot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/_UnsafeDequeSegments.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftdoc"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/DequeModule-Swift.h"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyMetadataFileList"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.DependencyStaticMetadataFileList"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/DequeModule.modulemap"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-OutputFileMap.json"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.LinkFileList"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftConstValuesFileList"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.SwiftFileList"]},"P2:target-DequeModule-PACKAGE-TARGET:DequeModule-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule_const_extract_protocols.json"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios13.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_dependency_info.dat"],"deps-style":"dependency-info","signature":"5d0b42fa473df7e2fed5a60c908a0322"},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements GRDB normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements GRDB normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Configuration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Cursor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+SQLCipher.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Schema.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database+Statements.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Database.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseBackupProgress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseCollation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseFunction.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabasePublishers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseQueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseReader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseRegionObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaCache.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSchemaSource.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseSnapshotPool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseValueConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DatabaseWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/DispatchQueueActor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/FetchRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Row.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowAdapter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/RowDecodingError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQL.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLInterpolation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SQLRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SchedulingWatchdog.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/SerializedDatabase.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Statement.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementAuthorizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/StatementColumnConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/CoreGraphics/CGFloat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Data.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseDateComponents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/DatabaseValueConvertible+ReferenceConvertible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Date.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/Decimal.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNull.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/NSString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/SQLiteDateParser.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/URL.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/Foundation/UUID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Decodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+Encodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/DatabaseValueConvertible+RawRepresentable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/JSONRequiredEncoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/Optional.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/Support/StandardLibrary/StandardLibrary.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionClock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/TransactionObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshot.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Core/WALSnapshotTransaction.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/Database+Dump.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DatabaseReader+dump.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/DebugDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/JSONDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/LineDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/ListDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Dump/DumpFormats/QuoteDumpFormat.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3Pattern.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS3TokenizerDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS4.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5CustomTokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Pattern.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5Tokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5TokenizerDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/FTS/FTS5WrapperTokenizer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Fixits.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/JSONColumn.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONExpressible.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/JSON/SQLJSONFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/DatabaseMigrator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Migration/Migration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS3+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/FTS5+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/ForeignKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/Association.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/AssociationAggregate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/BelongsToAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasManyThroughAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/HasOneThroughAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/Association/JoinAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/CommonTableExpression.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/QueryInterfaceRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Request/RequestProtocols.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Column.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/DatabasePromise.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLAssociation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLExpression.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLForeignKeyRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLFunctions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOperators.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLOrdering.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLRelation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSelection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/SQLSubquery.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQL/Table.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLColumnGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLGenerationContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLIndexGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLQueryGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableAlterationGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/SQLTableGenerator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLGeneration/TableAlias.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/SQLInterpolation+QueryInterface.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ColumnDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/Database+SchemaDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/ForeignKeyDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/IndexDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableAlteration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/TableDefinition.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/Schema/VirtualTableModule.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+Association.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/QueryInterface/TableRecord+QueryInterfaceRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord+Encodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/EncodableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+Decodable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord+TableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/FetchableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+DAO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Delete.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Insert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Save.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Update.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord+Upsert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/MutablePersistableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Insert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Save.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord+Upsert.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/PersistableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/Record.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Record/TableRecord.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/CaseInsensitiveIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections+English.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Inflections.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Mutex.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OnDemandFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/OrderedDictionary.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Pool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReadWriteLock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/ReceiveValuesOn.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Refinable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/Utils/Utils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/DatabaseCancellable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueConcurrentObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Observers/ValueWriteOnlyObserver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Fetch.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Map.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/RemoveDuplicates.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/Trace.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/Reducers/ValueReducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/SharedValueObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/GRDB/ValueObservation/ValueObservationScheduler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/resource_bundle_accessor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Configuration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Cursor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SQLCipher.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Schema.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Statements.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseBackupProgress.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCollation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseFunction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePublishers.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseQueue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegion.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseRegionObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaCache.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSchemaSource.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseSnapshotPool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValue.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseWriter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DispatchQueueActor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Row.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowAdapter.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RowDecodingError.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SchedulingWatchdog.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SerializedDatabase.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Statement.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementAuthorizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StatementColumnConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CGFloat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Data.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseDateComponents.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+ReferenceConvertible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Date.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Decimal.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSData.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNull.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSNumber.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/NSString.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLiteDateParser.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/URL.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/UUID.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseValueConvertible+RawRepresentable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONRequiredEncoder.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Optional.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/StandardLibrary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionClock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TransactionObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshot.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/WALSnapshotTransaction.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+Dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseReader+dump.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DebugDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/LineDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ListDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QuoteDumpFormat.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS4.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5CustomTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Pattern.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5Tokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5TokenizerDescriptor.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5WrapperTokenizer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fixits.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JSONColumn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONExpressible.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLJSONFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseMigrator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Migration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS3+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FTS5+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKey.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/AssociationAggregate.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/BelongsToAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasManyThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/HasOneThroughAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/JoinAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CommonTableExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RequestProtocols.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Column.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabasePromise.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLAssociation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLCollection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLExpression.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLForeignKeyRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLFunctions.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOperators.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLOrdering.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLRelation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSelection.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLSubquery.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Table.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLColumnGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLGenerationContext.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLIndexGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLQueryGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableAlterationGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLTableGenerator.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlias.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SQLInterpolation+QueryInterface.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ColumnDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Database+SchemaDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ForeignKeyDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/IndexDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableAlteration.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableDefinition.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/VirtualTableModule.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+Association.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord+QueryInterfaceRequest.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord+Encodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/EncodableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+Decodable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord+TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/FetchableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+DAO.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Delete.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Update.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/MutablePersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Insert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Save.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord+Upsert.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/PersistableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Record.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/TableRecord.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/CaseInsensitiveIdentifier.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections+English.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Inflections.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Mutex.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OnDemandFuture.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/OrderedDictionary.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Pool.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReadWriteLock.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ReceiveValuesOn.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Refinable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Utils.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/DatabaseCancellable.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueConcurrentObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueWriteOnlyObserver.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Fetch.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Map.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/RemoveDuplicates.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/Trace.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueReducer.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/SharedValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservation.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/ValueObservationScheduler.stringsdata","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftdoc"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GeneratedModuleMaps-iphoneos/GRDB-Swift.h"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/DerivedSources/resource_bundle_accessor.swift"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyMetadataFileList"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.DependencyStaticMetadataFileList"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/GRDB.modulemap"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-OutputFileMap.json"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.LinkFileList"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftConstValuesFileList"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.SwiftFileList"]},"P2:target-GRDB-PACKAGE-TARGET:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB_const_extract_protocols.json"]},"P2:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyMetadataFileList"]},"P2:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/GRDB_GRDB.DependencyStaticMetadataFileList"]},"P2:target-GRDB_GRDB-PACKAGE-RESOURCE:GRDB-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB_GRDB.build/empty-GRDB_GRDB.plist"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat"],"deps-style":"dependency-info","signature":"fc3983e370f6495fdc84cfba56d4e7ba"},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements InternalCollectionsUtilities normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements InternalCollectionsUtilities normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Debugging.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Descriptions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/FixedWidthInteger+roundUpToPowerOfTwo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/Integer rank.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+first and last set bit.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/UInt+reversed.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/LifetimeOverride.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/RandomAccessCollection+Offsets.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Span+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/String+Padding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+Index.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet+_Word.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/_UnsafeBitSet.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeMutableRawBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeRawBufferPointer+Extras.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_SortedCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_UniqueCollection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Debugging.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Descriptions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/FixedWidthInteger+roundUpToPowerOfTwo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Integer rank.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+first and last set bit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UInt+reversed.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/LifetimeOverride.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/RandomAccessCollection+Offsets.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/Span+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/String+Padding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+Index.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet+_Word.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UnsafeBitSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeMutableRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/UnsafeRawBufferPointer+Extras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_SortedCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/_UniqueCollection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftdoc"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/GeneratedModuleMaps-iphoneos/InternalCollectionsUtilities-Swift.h"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/InternalCollectionsUtilities.modulemap"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-OutputFileMap.json"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList"]},"P2:target-InternalCollectionsUtilities-PACKAGE-TARGET:InternalCollectionsUtilities-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_dependency_info.dat"],"deps-style":"dependency-info","signature":"a3892e774fc8fe9a2107d17743698570"},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIO normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIO normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIO/Exports.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/Exports.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftdoc"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIO-Swift.h"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyMetadataFileList"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.DependencyStaticMetadataFileList"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/NIO.modulemap"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-OutputFileMap.json"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.LinkFileList"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftConstValuesFileList"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.SwiftFileList"]},"P2:target-NIO-PACKAGE-TARGET:NIO-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO_const_extract_protocols.json"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_dependency_info.dat"],"deps-style":"dependency-info","signature":"75e4830a6ecb0d610f5b8f2fc55e86b1"},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOConcurrencyHelpers normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOConcurrencyHelpers normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOAtomic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOLockedValueBox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/NIOThreadPoolWorkAvailable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOAtomic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOLockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOThreadPoolWorkAvailable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftdoc"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOConcurrencyHelpers-Swift.h"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyMetadataFileList"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.DependencyStaticMetadataFileList"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/NIOConcurrencyHelpers.modulemap"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-OutputFileMap.json"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.LinkFileList"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftConstValuesFileList"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.SwiftFileList"]},"P2:target-NIOConcurrencyHelpers-PACKAGE-TARGET:NIOConcurrencyHelpers-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers_const_extract_protocols.json"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_dependency_info.dat"],"deps-style":"dependency-info","signature":"a508e87593389bf6cdff385da6d10dbe"},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOCore normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOCore normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AddressedEnvelope.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncAwaitSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelInboundStream.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncChannel/AsyncChannelOutboundWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncSequenceProducerStrategies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOAsyncWriter.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/AsyncSequences/NIOThrowingAsyncSequenceProducer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/BSDSocketAPI.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-aux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-binaryEncodedLengthPrefix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-conversions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-core.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-hex.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-int.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-lengthPrefix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-multi-int.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-quicBinaryEncodingStrategy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ByteBuffer-views.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Channel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelHandlers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelInvoker.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelOption.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/CircularBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Codec.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/ConvenienceOptionSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DeadChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/DispatchQueue+WithFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+Deprecated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop+SerialExecutor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+AssumeIsolated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+Deprecated.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture+WithEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/EventLoopFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileHandle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/FileRegion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/GlobalSingletons.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IOData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IPProtocol.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerBitPacking.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/IntegerTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Interfaces.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Linux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MarkedCircularBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/MulticastChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOAny.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCloseOnErrorHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOCoreSendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIODecodedAsyncSequence.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOLoopBound.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOPooledRecvBufferAllocator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOScheduledCallback.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSendable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOSplitLinesMessageDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/NIOTransportAccessibleChannelCore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/RecvByteBufferAllocator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SingleStepByteToMessageDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketAddresses.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SocketOptionProvider.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/SystemCallHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TimeAmount+Duration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/TypeAssistedChannelHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/UniversalBootstrapSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOCore/Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AddressedEnvelope.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncAwaitSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelInboundStream.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/AsyncChannelOutboundWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncSequenceProducerStrategies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAsyncWriter.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOThrowingAsyncSequenceProducer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/BSDSocketAPI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-aux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-binaryEncodedLengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-conversions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-core.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-hex.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-lengthPrefix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-multi-int.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-quicBinaryEncodingStrategy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ByteBuffer-views.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Channel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelHandlers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelInvoker.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelOption.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ChannelPipeline.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/CircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Codec.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/ConvenienceOptionSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DeadChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/DispatchQueue+WithFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop+SerialExecutor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+AssumeIsolated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+Deprecated.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture+WithEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/EventLoopFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileHandle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/FileRegion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/GlobalSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IOData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IPProtocol.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Interfaces.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MarkedCircularBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/MulticastChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOAny.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCloseOnErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCoreSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIODecodedAsyncSequence.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOLoopBound.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOPooledRecvBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOScheduledCallback.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSendable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOSplitLinesMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOTransportAccessibleChannelCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/RecvByteBufferAllocator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SingleStepByteToMessageDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketAddresses.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/SystemCallHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TimeAmount+Duration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/TypeAssistedChannelHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftdoc"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOCore-Swift.h"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyMetadataFileList"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.DependencyStaticMetadataFileList"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/NIOCore.modulemap"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-OutputFileMap.json"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.LinkFileList"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftConstValuesFileList"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.SwiftFileList"]},"P2:target-NIOCore-PACKAGE-TARGET:NIOCore-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore_const_extract_protocols.json"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_dependency_info.dat"],"deps-style":"dependency-info","signature":"7ddb2755e119045a8456b44822884bc1"},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOEmbedded normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOEmbedded normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/AsyncTestingEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOEmbedded/Embedded.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/AsyncTestingEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/Embedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftdoc"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOEmbedded-Swift.h"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyMetadataFileList"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.DependencyStaticMetadataFileList"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/NIOEmbedded.modulemap"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-OutputFileMap.json"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.LinkFileList"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftConstValuesFileList"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.SwiftFileList"]},"P2:target-NIOEmbedded-PACKAGE-TARGET:NIOEmbedded-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded_const_extract_protocols.json"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_dependency_info.dat"],"deps-style":"dependency-info","signature":"4d8283a5924c867bf2d723893e0cf15c"},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOExtras normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOExtras normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugInboundEventsHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/DebugOutboundEventsHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/FixedLengthFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/HTTP1ProxyConnectHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming+ContentLengthHeader.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/JSONRPCFraming.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldBasedFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LengthFieldPrepender.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/LineBasedFrameDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/MarkedCircularBuffer+PopFirstCheckMarked.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOExtrasError.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIOLengthFieldBitLength.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/NIORequestIdentifiable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/PCAPRingBuffer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/QuiescingHelper.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseHandlers+State.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/RequestResponseWithIDHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/Sources/NIOExtras/WritePCAPHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugInboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/DebugOutboundEventsHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/FixedLengthFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/HTTP1ProxyConnectHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming+ContentLengthHeader.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/JSONRPCFraming.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LengthFieldPrepender.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/LineBasedFrameDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/MarkedCircularBuffer+PopFirstCheckMarked.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtrasError.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOLengthFieldBitLength.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIORequestIdentifiable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/PCAPRingBuffer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/QuiescingHelper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseHandlers+State.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/RequestResponseWithIDHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/WritePCAPHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftdoc"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/GeneratedModuleMaps-iphoneos/NIOExtras-Swift.h"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyMetadataFileList"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.DependencyStaticMetadataFileList"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/NIOExtras.modulemap"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-OutputFileMap.json"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.LinkFileList"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftConstValuesFileList"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.SwiftFileList"]},"P2:target-NIOExtras-PACKAGE-TARGET:NIOExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras_const_extract_protocols.json"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_dependency_info.dat"],"deps-style":"dependency-info","signature":"cfc88791e7bf5a207bb6eff51912e2f7"},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOHTTP1 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOHTTP1 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/ByteCollectionUtils.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPDecoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPEncoder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaderValidator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPHeaders+Validation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPPipelineSetup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerPipelineHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerProtocolErrorHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPServerUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypedPipelineSetup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/HTTPTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPClientUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOHTTPObjectAggregator.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPClientUpgraderStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgradeHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOHTTP1/NIOTypedHTTPServerUpgraderStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/ByteCollectionUtils.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPDecoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPEncoder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaderValidator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPHeaders+Validation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerPipelineHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerProtocolErrorHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypedPipelineSetup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/HTTPTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTPObjectAggregator.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPClientUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgradeHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOTypedHTTPServerUpgraderStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftdoc"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOHTTP1-Swift.h"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyMetadataFileList"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.DependencyStaticMetadataFileList"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/NIOHTTP1.modulemap"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-OutputFileMap.json"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.LinkFileList"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftConstValuesFileList"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.SwiftFileList"]},"P2:target-NIOHTTP1-PACKAGE-TARGET:NIOHTTP1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1_const_extract_protocols.json"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_dependency_info.dat"],"deps-style":"dependency-info","signature":"a8f720a6bbc1f4f24d02049e80596c48"},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOPosix normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOPosix normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPICommon.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BSDSocketAPIWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+AccessibleTransport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel+SocketOptionProvider.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseSocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/BaseStreamSocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Bootstrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ControlMessage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/DatagramVectorReadManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Errors+Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/FileDescriptor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/GetaddrinfoResolver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/HappyEyeballs.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerBitPacking.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/IntegerTypes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Linux.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxCPUSet.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/LinuxUring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/MultiThreadedEventLoopGroup.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOPosixSendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NIOThreadPool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/NonBlockingFileIO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingDatagramWritesManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PendingWritesManager.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipeChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PipePair.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Pool.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons+ConcurrencyTakeOver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/PosixSingletons.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/RawSocketBootstrap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Resolver.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Selectable.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectableEventLoop.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorEpoll.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorGeneric.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorKqueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorUring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SelectorWSAPoll.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ServerSocket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Socket.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketChannel.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/SocketProtocols.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/StructuredConcurrencyHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/System.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Thread.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/ThreadWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Utilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/VsockChannelEvents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOPosix/Windows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPICommon.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BSDSocketAPIWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+AccessibleTransport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel+SocketOptionProvider.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/BaseStreamSocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Bootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ControlMessage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/DatagramVectorReadManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Errors+Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/FileDescriptor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/GetaddrinfoResolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/HappyEyeballs.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerBitPacking.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/IntegerTypes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Linux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxCPUSet.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/LinuxUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/MultiThreadedEventLoopGroup.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosixSendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOThreadPool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NonBlockingFileIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingDatagramWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PendingWritesManager.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipeChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PipePair.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Pool.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons+ConcurrencyTakeOver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/PosixSingletons.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/RawSocketBootstrap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Resolver.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Selectable.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectableEventLoop.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorEpoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorGeneric.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorKqueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorUring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SelectorWSAPoll.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ServerSocket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Socket.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketChannel.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/SocketProtocols.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/StructuredConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/System.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Thread.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Utilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/VsockChannelEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/Windows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftdoc"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOPosix-Swift.h"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/DerivedSources/resource_bundle_accessor.swift"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyMetadataFileList"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.DependencyStaticMetadataFileList"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/NIOPosix.modulemap"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-OutputFileMap.json"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.LinkFileList"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftConstValuesFileList"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.SwiftFileList"]},"P2:target-NIOPosix-PACKAGE-TARGET:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix_const_extract_protocols.json"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_dependency_info.dat"],"deps-style":"dependency-info","signature":"4ea24e15b2a16646fed08057bbd54072"},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOSSL normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOSSL normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/AndroidCABundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ByteBufferBIO.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/CustomPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/IdentityVerification.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/LinuxCABundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLClientHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler+Configuration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/NIOSSLServerHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/PosixPort.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCallbacks.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateExtensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLCertificateName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLConnection.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLContext.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLErrors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLInit.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPKCS12Bundle.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SSLPublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SecurityFrameworkCertificateVerification.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/String+unsafeUninitializedCapacity.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SubjectAlternativeName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/NIOSSLSecureBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/RNG.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/SafeCompare.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/SwiftCrypto/Zeroization.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/TLSConfiguration.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UniversalBootstrapSupport.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/Sources/NIOSSL/UnsafeKeyAndChainTarget.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/AndroidCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ByteBufferBIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/IdentityVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/LinuxCABundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLClientHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler+Configuration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLServerHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/PosixPort.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCallbacks.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateExtensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLCertificateName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLConnection.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLContext.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLErrors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLInit.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPKCS12Bundle.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SSLPublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SecurityFrameworkCertificateVerification.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/String+unsafeUninitializedCapacity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSLSecureBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/RNG.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/SafeCompare.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/Zeroization.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/TLSConfiguration.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UniversalBootstrapSupport.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/UnsafeKeyAndChainTarget.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftdoc"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/GeneratedModuleMaps-iphoneos/NIOSSL-Swift.h"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/DerivedSources/resource_bundle_accessor.swift"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyMetadataFileList"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.DependencyStaticMetadataFileList"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/NIOSSL.modulemap"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-OutputFileMap.json"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.LinkFileList"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftConstValuesFileList"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.SwiftFileList"]},"P2:target-NIOSSL-PACKAGE-TARGET:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL_const_extract_protocols.json"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_dependency_info.dat"],"deps-style":"dependency-info","signature":"f0b84c9680b8f2d87352bb80f43e473e"},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements NIOTLS normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements NIOTLS normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ApplicationProtocolNegotiationHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/NIOTypedApplicationProtocolNegotiationHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/ProtocolNegotiationHandlerStateMachine.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/SNIHandler.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/NIOTLS/TLSEvents.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTypedApplicationProtocolNegotiationHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/ProtocolNegotiationHandlerStateMachine.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/SNIHandler.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/TLSEvents.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftdoc"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/NIOTLS-Swift.h"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyMetadataFileList"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.DependencyStaticMetadataFileList"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/NIOTLS.modulemap"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-OutputFileMap.json"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.LinkFileList"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftConstValuesFileList"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.SwiftFileList"]},"P2:target-NIOTLS-PACKAGE-TARGET:NIOTLS-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS_const_extract_protocols.json"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json/","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc/","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule/","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/ProxyCore.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap/",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::Ld /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore normal":{"tool":"shell","description":"Ld /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore normal","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_vers.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BlockListEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/BreakpointRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CURLParser.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CapturedTraffic.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/CertificateManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ComposeRequest.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ConnectHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/Constants.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DNSSpoofRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DatabaseManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/DomainGroup.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/GlueHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/HTTPCaptureHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/IPCManager.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MITMHandler.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/MapLocalRule.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyServer.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/RulesRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/SSLProxyingEntry.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/TrafficRepository.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/WildcardMatcher.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/Release-iphoneos/GRDB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOCore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOAtomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOConcurrencyHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOOpenBSD.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIODarwin.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLinux.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOWASI.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/DequeModule.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/InternalCollectionsUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/Release-iphoneos/ContainersPreview.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/Atomics.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/NIOSSL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/Release-iphoneos/CNIOBoringSSLShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIO.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOEmbedded.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOTLS.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/NIOHTTP1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/CNIOLLHTTP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/Release-iphoneos/NIOExtras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/Crypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSL.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CCryptoBoringSSLShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/CryptoBoringWrapper.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore","","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_lto.o","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios17.0","-dynamiclib","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-O0","-L/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos","-L/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos","-F/Users/treyt/Desktop/code/proxy_ios/build/EagerLinkingTBDs/Debug-iphoneos","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/PackageFrameworks","-F/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos","-filelist","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList","-install_name","@rpath/ProxyCore.framework/ProxyCore","-Xlinker","-rpath","-Xlinker","/usr/lib/swift","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_lto.o","-rdynamic","-Xlinker","-no_deduplicate","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","@/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-lc++","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-lc++","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-Wl,-no_warn_duplicate_libraries","-compatibility_version","1","-current_version","1","-o","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/ProxyCore","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/GRDB.swift/build/GRDB.build/Release-iphoneos/GRDB.build/Objects-normal/arm64/GRDB-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOCore.build/Objects-normal/arm64/NIOCore-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOConcurrencyHelpers.build/Objects-normal/arm64/NIOConcurrencyHelpers-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/DequeModule.build/Objects-normal/arm64/DequeModule-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-collections/build/swift-collections.build/Release-iphoneos/ContainersPreview.build/Objects-normal/arm64/ContainersPreview-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/Atomics.build/Objects-normal/arm64/Atomics-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOPosix.build/Objects-normal/arm64/NIOPosix-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/NIOSSL.build/Objects-normal/arm64/NIOSSL-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIO.build/Objects-normal/arm64/NIO-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOEmbedded.build/Objects-normal/arm64/NIOEmbedded-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOTLS.build/Objects-normal/arm64/NIOTLS-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/NIOHTTP1.build/Objects-normal/arm64/NIOHTTP1-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-extras/build/swift-nio-extras.build/Release-iphoneos/NIOExtras.build/Objects-normal/arm64/NIOExtras-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/Crypto.build/Objects-normal/arm64/Crypto-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/CryptoBoringWrapper.build/Objects-normal/arm64/CryptoBoringWrapper-linker-args.resp"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Desktop/code/proxy_ios","deps":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_dependency_info.dat"],"deps-style":"dependency-info","signature":"d29d9312aed9f8d16c997e172c6603e1"},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::SwiftDriver Compilation Requirements ProxyCore normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements ProxyCore normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BlockListEntry.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/BreakpointRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/CURLParser.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/CapturedTraffic.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/CertificateManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/ComposeRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/ComposeRequest.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ConnectHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/Constants.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DNSSpoofRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Database/DatabaseManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/DomainGroup.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/GlueHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/HTTPCaptureHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/IPCManager.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/MITMHandler.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/MapLocalRule.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/ProxyEngine/ProxyServer.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/RulesRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Models/SSLProxyingEntry.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/DataLayer/Repositories/TrafficRepository.swift","/Users/treyt/Desktop/code/proxy_ios/ProxyCore/Sources/Shared/WildcardMatcher.swift","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyApp-51152c8012d44a0c2c1422f8b3e89199-VFS-iphoneos/all-product-headers.yaml","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap","/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Modules/module.modulemap","","","","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore Swift Compilation Requirements Finished","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftmodule","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-linker-args.resp","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftsourceinfo","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.abi.json","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.swiftdoc"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::SwiftMergeGeneratedHeaders /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","inputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-Swift.h","",""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/Debug-iphoneos/ProxyCore.framework/Headers/ProxyCore-Swift.h"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/DerivedSources/ProxyCore_vers.c"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore-OutputFileMap.json"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.LinkFileList"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftConstValuesFileList"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore.SwiftFileList"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/Objects-normal/arm64/ProxyCore_const_extract_protocols.json"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-non-framework-target-headers.hmap"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-all-target-headers.hmap"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-generated-files.hmap"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-own-target-headers.hmap"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore-project-headers.hmap"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyMetadataFileList"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.DependencyStaticMetadataFileList"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/ProxyCore.hmap"]},"P2:target-ProxyCore-51152c8012d44a0c2c1422f8b3e89199b612e8e28de5388fedde5bb813890682-::WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap","inputs":[""],"outputs":["/Users/treyt/Desktop/code/proxy_ios/build/ProxyApp.build/Debug-iphoneos/ProxyCore.build/module.modulemap"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/Release-iphoneos/SwiftASN1.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_dependency_info.dat"],"deps-style":"dependency-info","signature":"46c5d20155c20fc212474d0bbb547d13"},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements SwiftASN1 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements SwiftASN1 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/ASN1.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/BER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Any.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1BitString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Boolean.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Identifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Integer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Null.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1OctetString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ASN1Strings.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ArraySliceBigint.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/GeneralizedTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/TimeUtilities.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Basic ASN1 Types/UTCTime.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/DER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/Sources/SwiftASN1/Errors.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/BER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Any.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1BitString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Boolean.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Identifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Integer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Null.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1OctetString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ASN1Strings.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ArraySliceBigint.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/GeneralizedTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/TimeUtilities.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/UTCTime.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/Errors.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.swiftdoc"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/GeneratedModuleMaps-iphoneos/SwiftASN1-Swift.h"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1-OutputFileMap.json"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.LinkFileList"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftConstValuesFileList"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1.SwiftFileList"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/Objects-normal/arm64/SwiftASN1_const_extract_protocols.json"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyMetadataFileList"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.DependencyStaticMetadataFileList"]},"P2:target-SwiftASN1-PACKAGE-TARGET:SwiftASN1-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-asn1/build/swift-asn1.build/Release-iphoneos/SwiftASN1.build/SwiftASN1.modulemap"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/X509.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_dependency_info.dat"],"deps-style":"dependency-info","signature":"72a4a76cc8d7cb366b8ed63984fc28aa"},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements X509 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements X509 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRAttributes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CSRVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificateSigningRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/CertificationRequestInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CSR/ExtensionRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Certificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificatePublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateSerialNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CertificateVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSContentInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSEncapsulatedContentInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSIssuerAndSerialNumber.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSOperations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignedData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSSignerInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CryptographicMessageSyntax/CMSVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Curve25519+DER.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/CustomPrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Digests.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CommonName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/CountryName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DNBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/DomainComponent.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/EmailAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/LocalityName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/OrganizationalUnitName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StateOrProvinceName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/DistinguishedNameBuilder/StreetAddress.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Error.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityInformationAccess.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/AuthorityKeyIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/BasicConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtendedKeyUsage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/ExtensionIdentifiers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/KeyUsage.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/NameConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectAlternativeName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension Types/SubjectKeyIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extension.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/ExtensionsBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/GeneralName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Lock.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/LockedValueBox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/BasicOCSPResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/DirectoryString.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPCertStatus.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPExtensionID.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPNonce.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseData.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPResponseStatus.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPSingleResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPTBSRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/OCSP/OCSPVersion.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/PromiseAndFuture.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RDNAttribute.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RandomNumberGenerator+bytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/RelativeDistinguishedName.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SEC1PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SecKeyWrapper.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Signature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/SignatureAlgorithm.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AllOfPolicies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/AnyPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CertificateStore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/CustomCertificateStore.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/OneOfPolicies.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/PolicyBuilder.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/BasicConstraintsPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DNSNames.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/DirectoryNames.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/ExpiryPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/IPConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/NameConstraintsPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/RFC5280Policy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/URIConstraints.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/RFC5280/VersionPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ServerIdentityPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/TrustRootLoading.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/UnverifiedChain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/ValidatedCertificateChain.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerificationDiagnostic.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/Verifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/Verifier/VerifierPolicy.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/AlgorithmIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/ECDSASignature.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/RSAPKCS1PublicKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TBSCertificate.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Time.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/TimeCalculations.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509BaseTypes/Validity.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/X509/X509SendableMetatype.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRAttributes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CSRVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSigningRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificationRequestInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Certificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificatePublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSEncapsulatedContentInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSIssuerAndSerialNumber.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSOperations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignedData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSSignerInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CMSVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Curve25519+DER.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomPrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Digests.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CommonName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CountryName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DomainComponent.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/EmailAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LocalityName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OrganizationalUnitName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StateOrProvinceName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/StreetAddress.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityInformationAccess.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AuthorityKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtendedKeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionIdentifiers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/KeyUsage.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectAlternativeName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectKeyIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extension.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExtensionsBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/GeneralName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Lock.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/LockedValueBox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicOCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryString.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPCertStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPExtensionID.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPNonce.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseData.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPResponseStatus.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPSingleResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPTBSRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OCSPVersion.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PromiseAndFuture.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RDNAttribute.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RandomNumberGenerator+bytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RelativeDistinguishedName.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SEC1PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SecKeyWrapper.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Signature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SignatureAlgorithm.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AllOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AnyPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/CustomCertificateStore.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/OneOfPolicies.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/PolicyBuilder.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/BasicConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DNSNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/DirectoryNames.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ExpiryPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/IPConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/NameConstraintsPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RFC5280Policy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/URIConstraints.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VersionPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ServerIdentityPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TrustRootLoading.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/UnverifiedChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ValidatedCertificateChain.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerificationDiagnostic.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/VerifierPolicy.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/ECDSASignature.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/RSAPKCS1PublicKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TBSCertificate.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Time.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/TimeCalculations.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/Validity.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509SendableMetatype.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.swiftdoc"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/X509-Swift.h"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509-OutputFileMap.json"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.LinkFileList"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftConstValuesFileList"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509.SwiftFileList"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/Objects-normal/arm64/X509_const_extract_protocols.json"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyMetadataFileList"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.DependencyStaticMetadataFileList"]},"P2:target-X509-PACKAGE-TARGET:X509-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/X509.build/X509.modulemap"]},"P2:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/Release-iphoneos/_AtomicsShims.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims_dependency_info.dat"],"deps-style":"dependency-info","signature":"41e2da690f613336835ad9a3c4bc7038"},"P2:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp"]},"P2:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/Objects-normal/arm64/_AtomicsShims.LinkFileList"]},"P2:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyMetadataFileList"]},"P2:target-_AtomicsShims-PACKAGE-TARGET:_AtomicsShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-atomics/build/swift-atomics.build/Release-iphoneos/_AtomicsShims.build/_AtomicsShims.DependencyStaticMetadataFileList"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/Release-iphoneos/_CertificateInternals.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_dependency_info.dat"],"deps-style":"dependency-info","signature":"bee8ded895e6348afcc7b9ff4805004a"},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements _CertificateInternals normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements _CertificateInternals normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/Sources/_CertificateInternals/_TinyArray.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.swiftdoc"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/GeneratedModuleMaps-iphoneos/_CertificateInternals-Swift.h"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals-OutputFileMap.json"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.LinkFileList"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftConstValuesFileList"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals.SwiftFileList"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/Objects-normal/arm64/_CertificateInternals_const_extract_protocols.json"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyMetadataFileList"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.DependencyStaticMetadataFileList"]},"P2:target-_CertificateInternals-PACKAGE-TARGET:_CertificateInternals-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-certificates/build/swift-certificates.build/Release-iphoneos/_CertificateInternals.build/_CertificateInternals.modulemap"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/PackageFrameworks","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/Release-iphoneos/_CryptoExtras.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_dependency_info.dat"],"deps-style":"dependency-info","signature":"a19bceae1b60cda43f66c23a0e604291"},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements _CryptoExtras normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements _CryptoExtras normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CBC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CFB.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_CTR.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/AES_GCM_SIV.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/Block Function.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CFB_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_CTR_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/BoringSSL/AES_GCM_SIV_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/AES/CMAC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC+API.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARC.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCCredential.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCEncoding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPrecredential.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCPresentation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCRequest.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCResponse.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ARC/ARCServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/BoringSSL/ChaCha20CTR_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ChaCha20CTR/ChaCha20CTR.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/ObjectIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8DERRepresentation.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/PKCS8PrivateKey.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/EC/RFC8410AlgorithmIdentifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/BoringSSL/ECToolbox_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ECToolbox/ECToolbox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/H2G/HashToField.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/KDF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/BoringSSL/PBKDF2_commoncrypto.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/PBKDF2/PBKDF2.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/BoringSSL/Scrypt_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Key Derivation/Scrypt/Scrypt.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRF.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFClient.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/OPRFServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRF+API.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFClient.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/OPRFs/VOPRFServer.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/RSA/RSA_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/BoringSSLHelpers.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/CryptoKitErrors_boring.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Data+Extensions.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/DigestType.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/Error.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/I2OSP.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/IntegerEncoding.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PEMDocument.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/PrettyBytes.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/SubjectPublicKeyInfo.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadOps.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadPosix.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadSpecific.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/Util/ThreadSpecific/ThreadWindows.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/DLEQ.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Prover.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/Verifier.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/Sources/_CryptoExtras/ZKPs/ZKPToolbox.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/resource_bundle_accessor.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CBC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Block Function.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CFB_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/AES_GCM_SIV_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CMAC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARC.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCCredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPrecredential.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCPresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCRequest.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCResponse.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ARCServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ChaCha20CTR.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ObjectIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8DERRepresentation.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PKCS8PrivateKey.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RFC8410AlgorithmIdentifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ECToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/HashToField.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/KDF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2_commoncrypto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PBKDF2.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Scrypt.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRF.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/OPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRF+API.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFClient.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/VOPRFServer.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA+BlindSigning.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/RSA_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/BoringSSLHelpers.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/CryptoKitErrors_boring.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Data+Extensions.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DigestType.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Error.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/I2OSP.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/IntegerEncoding.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PEMDocument.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/PrettyBytes.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/SubjectPublicKeyInfo.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadOps.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadPosix.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadSpecific.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ThreadWindows.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/DLEQ.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Prover.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/Verifier.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/ZKPToolbox.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.swiftdoc"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/GeneratedModuleMaps-iphoneos/_CryptoExtras-Swift.h"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/DerivedSources/resource_bundle_accessor.swift"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras-OutputFileMap.json"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.LinkFileList"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftConstValuesFileList"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras.SwiftFileList"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/Objects-normal/arm64/_CryptoExtras_const_extract_protocols.json"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyMetadataFileList"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.DependencyStaticMetadataFileList"]},"P2:target-_CryptoExtras-PACKAGE-TARGET:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/_CryptoExtras.build/_CryptoExtras.modulemap"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIOBase64.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_dependency_info.dat"],"deps-style":"dependency-info","signature":"82b37a679c7514785d4db7fd229191f0"},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements _NIOBase64 normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements _NIOBase64 normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIOBase64/Base64.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/Base64.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.swiftdoc"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIOBase64-Swift.h"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64-OutputFileMap.json"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.LinkFileList"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftConstValuesFileList"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64.SwiftFileList"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/Objects-normal/arm64/_NIOBase64_const_extract_protocols.json"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyMetadataFileList"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.DependencyStaticMetadataFileList"]},"P2:target-_NIOBase64-PACKAGE-TARGET:_NIOBase64-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIOBase64.build/_NIOBase64.modulemap"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap/",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.abi.json"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftdoc"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule":{"tool":"file-copy","description":"Copy /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule/","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.swiftmodule/arm64-apple-ios.swiftmodule"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o normal":{"tool":"shell","description":"Ld /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o normal","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o","","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_lto.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat"],"args":["/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-Xlinker","-reproducible","-target","arm64-apple-ios12.0","-r","-isysroot","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk","-Os","-w","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-L/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/EagerLinkingTBDs/Release-iphoneos","-F/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks","-iframework","/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS26.2.sdk/Developer/Library/Frameworks","-filelist","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList","-nostdlib","-Xlinker","-object_path_lto","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_lto.o","-Xlinker","-dependency_info","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat","-fobjc-link-runtime","-L/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos","-L/usr/lib/swift","-Xlinker","-add_ast_path","-Xlinker","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","@/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","-o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/Release-iphoneos/_NIODataStructures.o"],"env":{"PATH":"/Applications/Xcode-26.3.0.app/Contents/SharedFrameworks/SwiftBuild.framework/Versions/A/PlugIns/SWBBuildService.bundle/Contents/PlugIns/SWBUniversalPlatformPlugin.bundle/Contents/Frameworks/SWBUniversalPlatform.framework/Resources:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/local/bin:/var/run/com.apple.security.cryptexd/mnt/com.apple.MobileAsset.MetalToolchain-v17.3.7003.10.NPQeMZ/Metal.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/bin:/Applications/Xcode-26.3.0.app/Contents/Developer/usr/local/bin:/Users/treyt/.local/bin:/opt/homebrew/Cellar/pyenv-virtualenv/1.2.6/shims:/Users/treyt/.pyenv/shims:/Users/treyt/.pyenv/bin:/opt/homebrew/opt/libxml2/bin:/opt/homebrew/opt/openssl@3/bin:/Users/treyt/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/opt/pkg/env/active/bin:/opt/pmk/env/global/bin:/Library/Apple/usr/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/treyt/.claude/plugins/cache/claude-plugins-official/frontend-design/unknown/bin:/Users/treyt/.claude/plugins/cache/fradser-dotagent/swiftui/0.2.1/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/axiom/0.1.6/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/systems-programming/1.2.2/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins/feature-dev/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-plugins-plus/mobile-app-tester/1.0.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/code-refactoring/1.2.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/content-marketing/1.2.0/bin:/Users/treyt/.claude/plugins/cache/axiom-marketplace/axiom/2.38.0/bin:/Users/treyt/.claude/plugins/cache/claude-code-workflows/comprehensive-review/1.3.0/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0/bin:/Users/treyt/.claude/plugins/cache/cc-marketplace/app-store-optimizer/1.0.0/bin:/Users/treyt/.claude/plugins/cache/superpowers-marketplace/superpowers/4.0.3/bin:/Users/treyt/.claude/plugins/cache/claude-plugins-official/skill-creator/unknown/bin"},"working-directory":"/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio","deps":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_dependency_info.dat"],"deps-style":"dependency-info","signature":"c281cf7fb9452cb1b419d785dc95bc9d"},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftDriver Compilation Requirements _NIODataStructures normal arm64 com.apple.xcode.tools.swift.compiler":{"tool":"swift-driver-compilation-requirement","description":"SwiftDriver Compilation Requirements _NIODataStructures normal arm64 com.apple.xcode.tools.swift.compiler","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/Heap.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/PriorityQueue.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/Sources/_NIODataStructures/_TinyArray.swift","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures.modulemap","","","","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/Heap.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/PriorityQueue.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_TinyArray.o","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-primary.swiftconstvalues","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftmodule","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-linker-args.resp","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftsourceinfo","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.abi.json","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.swiftdoc"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h":{"tool":"swift-header-tool","description":"SwiftMergeGeneratedHeaders /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","inputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-Swift.h","",""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/GeneratedModuleMaps-iphoneos/_NIODataStructures-Swift.h"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures-OutputFileMap.json"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.LinkFileList"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftConstValuesFileList"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures.SwiftFileList"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/Objects-normal/arm64/_NIODataStructures_const_extract_protocols.json"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyMetadataFileList"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.DependencyStaticMetadataFileList"]},"P2:target-_NIODataStructures-PACKAGE-TARGET:_NIODataStructures-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/_NIODataStructures.build/_NIODataStructures.modulemap"]},"P2:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/empty-swift-crypto_CCryptoBoringSSL.plist"]},"P2:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyMetadataFileList"]},"P2:target-swift-crypto_CCryptoBoringSSL-PACKAGE-RESOURCE:CCryptoBoringSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSL.build/swift-crypto_CCryptoBoringSSL.DependencyStaticMetadataFileList"]},"P2:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/empty-swift-crypto_CCryptoBoringSSLShims.plist"]},"P2:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyMetadataFileList"]},"P2:target-swift-crypto_CCryptoBoringSSLShims-PACKAGE-RESOURCE:CCryptoBoringSSLShims-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CCryptoBoringSSLShims.build/swift-crypto_CCryptoBoringSSLShims.DependencyStaticMetadataFileList"]},"P2:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/empty-swift-crypto_Crypto.plist"]},"P2:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyMetadataFileList"]},"P2:target-swift-crypto_Crypto-PACKAGE-RESOURCE:Crypto-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_Crypto.build/swift-crypto_Crypto.DependencyStaticMetadataFileList"]},"P2:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/empty-swift-crypto_CryptoBoringWrapper.plist"]},"P2:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyMetadataFileList"]},"P2:target-swift-crypto_CryptoBoringWrapper-PACKAGE-RESOURCE:CryptoBoringWrapper-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto_CryptoBoringWrapper.build/swift-crypto_CryptoBoringWrapper.DependencyStaticMetadataFileList"]},"P2:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/empty-swift-crypto__CryptoExtras.plist"]},"P2:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyMetadataFileList"]},"P2:target-swift-crypto__CryptoExtras-PACKAGE-RESOURCE:_CryptoExtras-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-crypto/build/swift-crypto.build/Release-iphoneos/swift-crypto__CryptoExtras.build/swift-crypto__CryptoExtras.DependencyStaticMetadataFileList"]},"P2:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/empty-swift-nio-ssl_NIOSSL.plist"]},"P2:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyMetadataFileList"]},"P2:target-swift-nio-ssl_NIOSSL-PACKAGE-RESOURCE:NIOSSL-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio-ssl/build/swift-nio-ssl.build/Release-iphoneos/swift-nio-ssl_NIOSSL.build/swift-nio-ssl_NIOSSL.DependencyStaticMetadataFileList"]},"P2:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/empty-swift-nio_NIOPosix.plist"]},"P2:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyMetadataFileList"]},"P2:target-swift-nio_NIOPosix-PACKAGE-RESOURCE:NIOPosix-SDKROOT:iphoneos:SDK_VARIANT:iphoneos::WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyStaticMetadataFileList":{"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyStaticMetadataFileList","inputs":[""],"outputs":["/Users/treyt/Library/Developer/Xcode/DerivedData/ProxyApp-agvpcriuwtslyidmsipcqzpuhbvu/SourcePackages/checkouts/swift-nio/build/swift-nio.build/Release-iphoneos/swift-nio_NIOPosix.build/swift-nio_NIOPosix.DependencyStaticMetadataFileList"]}}} \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/target-graph.txt b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/target-graph.txt new file mode 100644 index 0000000..f5c0352 --- /dev/null +++ b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/target-graph.txt @@ -0,0 +1,303 @@ +Target dependency graph (60 targets) +Target 'ProxyCore' in project 'ProxyApp' +➜ Explicit dependency on target 'GRDB' in project 'GRDB' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'NIOHTTP1' in project 'swift-nio' +➜ Explicit dependency on target 'NIOExtras' in project 'swift-nio-extras' +➜ Explicit dependency on target 'X509' in project 'swift-certificates' +➜ Explicit dependency on target 'Crypto' in project 'swift-crypto' +Target 'X509' in project 'swift-certificates' +➜ Explicit dependency on target 'X509' in project 'swift-certificates' +➜ Explicit dependency on target '_CertificateInternals' in project 'swift-certificates' +➜ Explicit dependency on target 'SwiftASN1' in project 'swift-asn1' +➜ Explicit dependency on target 'Crypto' in project 'swift-crypto' +➜ Explicit dependency on target '_CryptoExtras' in project 'swift-crypto' +Target 'X509' in project 'swift-certificates' +➜ Explicit dependency on target '_CertificateInternals' in project 'swift-certificates' +➜ Explicit dependency on target 'SwiftASN1' in project 'swift-asn1' +➜ Explicit dependency on target 'Crypto' in project 'swift-crypto' +➜ Explicit dependency on target '_CryptoExtras' in project 'swift-crypto' +Target '_CryptoExtras' in project 'swift-crypto' +➜ Explicit dependency on target '_CryptoExtras' in project 'swift-crypto' +➜ Explicit dependency on target 'swift-crypto__CryptoExtras' in project 'swift-crypto' +➜ Explicit dependency on target 'CCryptoBoringSSL' in project 'swift-crypto' +➜ Explicit dependency on target 'CCryptoBoringSSLShims' in project 'swift-crypto' +➜ Explicit dependency on target 'CryptoBoringWrapper' in project 'swift-crypto' +➜ Explicit dependency on target 'Crypto' in project 'swift-crypto' +➜ Explicit dependency on target 'SwiftASN1' in project 'swift-asn1' +Target '_CryptoExtras' in project 'swift-crypto' +➜ Explicit dependency on target 'swift-crypto__CryptoExtras' in project 'swift-crypto' +➜ Explicit dependency on target 'CCryptoBoringSSL' in project 'swift-crypto' +➜ Explicit dependency on target 'CCryptoBoringSSLShims' in project 'swift-crypto' +➜ Explicit dependency on target 'CryptoBoringWrapper' in project 'swift-crypto' +➜ Explicit dependency on target 'Crypto' in project 'swift-crypto' +➜ Explicit dependency on target 'SwiftASN1' in project 'swift-asn1' +Target 'CryptoBoringWrapper' in project 'swift-crypto' +➜ Explicit dependency on target 'swift-crypto_CryptoBoringWrapper' in project 'swift-crypto' +➜ Explicit dependency on target 'CCryptoBoringSSL' in project 'swift-crypto' +➜ Explicit dependency on target 'CCryptoBoringSSLShims' in project 'swift-crypto' +Target 'swift-crypto_CryptoBoringWrapper' in project 'swift-crypto' (no dependencies) +Target 'CCryptoBoringSSLShims' in project 'swift-crypto' +➜ Explicit dependency on target 'swift-crypto_CCryptoBoringSSLShims' in project 'swift-crypto' +➜ Explicit dependency on target 'CCryptoBoringSSL' in project 'swift-crypto' +Target 'swift-crypto_CCryptoBoringSSLShims' in project 'swift-crypto' (no dependencies) +Target 'CCryptoBoringSSL' in project 'swift-crypto' +➜ Explicit dependency on target 'swift-crypto_CCryptoBoringSSL' in project 'swift-crypto' +Target 'swift-crypto_CCryptoBoringSSL' in project 'swift-crypto' (no dependencies) +Target 'swift-crypto__CryptoExtras' in project 'swift-crypto' (no dependencies) +Target 'Crypto' in project 'swift-crypto' +➜ Explicit dependency on target 'Crypto' in project 'swift-crypto' +➜ Explicit dependency on target 'swift-crypto_Crypto' in project 'swift-crypto' +Target 'Crypto' in project 'swift-crypto' +➜ Explicit dependency on target 'swift-crypto_Crypto' in project 'swift-crypto' +Target 'swift-crypto_Crypto' in project 'swift-crypto' (no dependencies) +Target 'SwiftASN1' in project 'swift-asn1' +➜ Explicit dependency on target 'SwiftASN1' in project 'swift-asn1' +Target 'SwiftASN1' in project 'swift-asn1' (no dependencies) +Target '_CertificateInternals' in project 'swift-certificates' (no dependencies) +Target 'NIOExtras' in project 'swift-nio-extras' +➜ Explicit dependency on target 'NIOExtras' in project 'swift-nio-extras' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOHTTP1' in project 'swift-nio' +Target 'NIOExtras' in project 'swift-nio-extras' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOHTTP1' in project 'swift-nio' +Target 'NIOHTTP1' in project 'swift-nio' +➜ Explicit dependency on target 'NIOHTTP1' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOEmbedded' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLLHTTP' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'NIOHTTP1' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOEmbedded' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLLHTTP' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'CNIOLLHTTP' in project 'swift-nio' (no dependencies) +Target 'NIOSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'NIOSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'swift-nio-ssl_NIOSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'CNIOBoringSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'CNIOBoringSSLShims' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target 'NIOTLS' in project 'swift-nio' +Target 'NIOSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'swift-nio-ssl_NIOSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'CNIOBoringSSL' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'CNIOBoringSSLShims' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target 'NIOTLS' in project 'swift-nio' +Target 'NIOTLS' in project 'swift-nio' +➜ Explicit dependency on target 'NIOTLS' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOEmbedded' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'NIOTLS' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOEmbedded' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +Target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOEmbedded' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'NIO' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOEmbedded' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'NIOEmbedded' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'CNIOBoringSSLShims' in project 'swift-nio-ssl' +➜ Explicit dependency on target 'CNIOBoringSSL' in project 'swift-nio-ssl' +Target 'CNIOBoringSSL' in project 'swift-nio-ssl' (no dependencies) +Target 'swift-nio-ssl_NIOSSL' in project 'swift-nio-ssl' (no dependencies) +Target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'swift-nio_NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'swift-nio_NIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOPosix' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'CNIOPosix' in project 'swift-nio' (no dependencies) +Target 'swift-nio_NIOPosix' in project 'swift-nio' (no dependencies) +Target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'NIOCore' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +➜ Explicit dependency on target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target '_NIOBase64' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOOpenBSD' in project 'swift-nio' +➜ Explicit dependency on target 'CNIODarwin' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOLinux' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWindows' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOWASI' in project 'swift-nio' +➜ Explicit dependency on target '_NIODataStructures' in project 'swift-nio' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +Target 'Atomics' in project 'swift-atomics' +➜ Explicit dependency on target 'Atomics' in project 'swift-atomics' +➜ Explicit dependency on target '_AtomicsShims' in project 'swift-atomics' +Target 'Atomics' in project 'swift-atomics' +➜ Explicit dependency on target '_AtomicsShims' in project 'swift-atomics' +Target '_AtomicsShims' in project 'swift-atomics' (no dependencies) +Target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'InternalCollectionsUtilities' in project 'swift-collections' +➜ Explicit dependency on target 'ContainersPreview' in project 'swift-collections' +Target 'DequeModule' in project 'swift-collections' +➜ Explicit dependency on target 'InternalCollectionsUtilities' in project 'swift-collections' +➜ Explicit dependency on target 'ContainersPreview' in project 'swift-collections' +Target 'ContainersPreview' in project 'swift-collections' +➜ Explicit dependency on target 'InternalCollectionsUtilities' in project 'swift-collections' +Target 'InternalCollectionsUtilities' in project 'swift-collections' (no dependencies) +Target '_NIODataStructures' in project 'swift-nio' (no dependencies) +Target 'CNIOWASI' in project 'swift-nio' (no dependencies) +Target 'CNIOWindows' in project 'swift-nio' (no dependencies) +Target 'CNIOLinux' in project 'swift-nio' (no dependencies) +Target 'CNIODarwin' in project 'swift-nio' (no dependencies) +Target 'CNIOOpenBSD' in project 'swift-nio' (no dependencies) +Target '_NIOBase64' in project 'swift-nio' (no dependencies) +Target 'NIOConcurrencyHelpers' in project 'swift-nio' +➜ Explicit dependency on target 'CNIOAtomics' in project 'swift-nio' +Target 'CNIOAtomics' in project 'swift-nio' (no dependencies) +Target 'GRDB' in project 'GRDB' +➜ Explicit dependency on target 'GRDB' in project 'GRDB' +➜ Explicit dependency on target 'GRDB_GRDB' in project 'GRDB' +Target 'GRDB' in project 'GRDB' +➜ Explicit dependency on target 'GRDB_GRDB' in project 'GRDB' +➜ Explicit dependency on target 'GRDBSQLite' in project 'GRDB' +Target 'GRDBSQLite' in project 'GRDB' (no dependencies) +Target 'GRDB_GRDB' in project 'GRDB' (no dependencies) \ No newline at end of file diff --git a/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/task-store.msgpack b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/task-store.msgpack new file mode 100644 index 0000000..4981458 Binary files /dev/null and b/build/XCBuildData/376368fc10958a611da72fd719efd259.xcbuilddata/task-store.msgpack differ diff --git a/build/XCBuildData/build.db b/build/XCBuildData/build.db new file mode 100644 index 0000000..2d18b52 Binary files /dev/null and b/build/XCBuildData/build.db differ diff --git a/project.yml b/project.yml new file mode 100644 index 0000000..fc1791b --- /dev/null +++ b/project.yml @@ -0,0 +1,134 @@ +name: ProxyApp +options: + bundleIdPrefix: com.treyt.proxyapp + deploymentTarget: + iOS: "17.0" + xcodeVersion: "26.3" + generateEmptyDirectories: true + +settings: + base: + SWIFT_VERSION: "6.0" + DEVELOPMENT_TEAM: "" + CODE_SIGN_STYLE: Automatic + +packages: + GRDB: + url: https://github.com/groue/GRDB.swift.git + from: "7.4.1" + SwiftNIO: + url: https://github.com/apple/swift-nio.git + from: "2.65.0" + SwiftNIOSSL: + url: https://github.com/apple/swift-nio-ssl.git + from: "2.27.0" + SwiftNIOExtras: + url: https://github.com/apple/swift-nio-extras.git + from: "1.22.0" + SwiftCertificates: + url: https://github.com/apple/swift-certificates.git + from: "1.5.0" + SwiftCrypto: + url: https://github.com/apple/swift-crypto.git + from: "3.5.0" + +targets: + ProxyApp: + type: application + platform: iOS + sources: + - path: App + - path: UI + resources: + - path: Resources + dependencies: + - target: PacketTunnel + - target: ProxyCore + embed: false + - package: GRDB + info: + path: App/Info.plist + properties: + CFBundleDisplayName: Proxy + UILaunchScreen: {} + UISupportedInterfaceOrientations: + - UIInterfaceOrientationPortrait + UIApplicationSceneManifest: + UIApplicationSupportsMultipleScenes: false + settings: + base: + PRODUCT_BUNDLE_IDENTIFIER: com.treyt.proxyapp + CODE_SIGN_ENTITLEMENTS: App/Entitlements/ProxyApp.entitlements + SWIFT_STRICT_CONCURRENCY: complete + entitlements: + path: App/Entitlements/ProxyApp.entitlements + properties: + com.apple.security.application-groups: + - group.com.treyt.proxyapp + com.apple.developer.networking.networkextension: + - packet-tunnel-provider + + PacketTunnel: + type: app-extension + platform: iOS + sources: + - path: PacketTunnel + dependencies: + - target: ProxyCore + embed: false + - package: GRDB + - package: SwiftNIO + product: NIOCore + - package: SwiftNIO + product: NIOPosix + - package: SwiftNIOSSL + product: NIOSSL + - package: SwiftNIO + product: NIOHTTP1 + - package: SwiftNIOExtras + product: NIOExtras + info: + path: PacketTunnel/Info.plist + properties: + NSExtension: + NSExtensionPointIdentifier: com.apple.networkextension.packet-tunnel + NSExtensionPrincipalClass: $(PRODUCT_MODULE_NAME).PacketTunnelProvider + settings: + base: + PRODUCT_BUNDLE_IDENTIFIER: com.treyt.proxyapp.PacketTunnel + CODE_SIGN_ENTITLEMENTS: PacketTunnel/Entitlements/PacketTunnel.entitlements + SWIFT_VERSION: "5" + SWIFT_STRICT_CONCURRENCY: complete + entitlements: + path: PacketTunnel/Entitlements/PacketTunnel.entitlements + properties: + com.apple.security.application-groups: + - group.com.treyt.proxyapp + com.apple.developer.networking.networkextension: + - packet-tunnel-provider + + ProxyCore: + type: framework + platform: iOS + sources: + - path: ProxyCore/Sources + dependencies: + - package: GRDB + - package: SwiftNIO + product: NIOCore + - package: SwiftNIO + product: NIOPosix + - package: SwiftNIOSSL + product: NIOSSL + - package: SwiftNIO + product: NIOHTTP1 + - package: SwiftNIOExtras + product: NIOExtras + - package: SwiftCertificates + product: X509 + - package: SwiftCrypto + product: Crypto + settings: + base: + PRODUCT_BUNDLE_IDENTIFIER: com.treyt.proxyapp.ProxyCore + SWIFT_STRICT_CONCURRENCY: complete